如何让 WMD-Editor 将 Markdown 发布到服务器而不是 HTML?
看起来 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 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.
在 我的版本 (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).