如何让 WMD-Editor 将 Markdown 发布到服务器而不是 HTML?

发布于 2024-07-25 03:03:17 字数 73 浏览 7 评论 0原文

看起来 WMD-Editor 正在将 HTML 而不是 Markdown 发布到服务器。 我怎样才能让它发送 Markdown ?

It seems that WMD-Editor is posting HTML to the server instead of the markdown. How can i get it to send the Markdown?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏尔 2024-08-01 03:03:17

在 SO 版本的 master 分支中,有趣的行是第 2341 行:


Attacklab.wmd_defaults = {版本:1,输出:“HTML”,lineLength:40,delayLoad:false};

更改此设置以要求降价:


Attacklab.wmd_defaults = {version:1,output:“markdown”,lineLength:40,delayLoad:false};

..你会得到Markdown。

In the master branch of the SO version, the interesting line is line 2341:


Attacklab.wmd_defaults = {version:1, output:"HTML", lineLength:40, delayLoad:false};

Change this to ask for markdown instead:


Attacklab.wmd_defaults = {version:1, output:"markdown", lineLength:40, delayLoad:false};

.. and you'll get the Markdown instead.

久隐师 2024-08-01 03:03:17

我的版本 (mooWMD) 中,您必须将第 1343 行的值从 'html' 更改为 'markdown' .
我相信 SO 版本是相同的(查找“输出”配置值)。

In my version (mooWMD) you have to change the value at line 1343 from 'html' to 'markdown'.
I believe it is the same for the SO version (look for the 'output' configuration value).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文