我正在尝试将像 StackExchange 在其网站上使用的 Markdown 编辑器加载到带有 Bookmarklet 或浏览器扩展的 Forrst.com 网站。
基本上看起来我需要...
将 CSS 文件加载到页面
https://raw.github.com/ujifgc/pagedown/master/demo/browser/demo.css将这 3 个 Javascript 文件加载到页面中
https://raw.github.com/ujifgc/pagedown/master/Markdown.Converter.js
https://raw.github.com/ujifgc/pagedown/master/Markdown.Editor.js
https://raw.github。 com/ujifgc/pagedown/master/Markdown.Sanitizer.js将此 Javascript 加载到页面中以使其全部运行...
//Load and run this code in the page...
// Find and replace the curent textarea with the HTML we
// need for our markdown editor to work
var htmlToReplace = ' \
<div class="wmd-panel"> \
<div id="wmd-button-bar"></div> \
<textarea class="wmd-input" id="wmd-input" name="description"></textarea> \
</div> \
<div id="wmd-preview" class="wmd-panel wmd-preview"></div>';
$("#description").replaceWith(htmlToReplace)
//Run the markdown editor scripts
(function () {
var converter1 = Markdown.getSanitizingConverter();
var editor1 = new Markdown.Editor(converter1);
editor1.run();
})();
如果有人能指出我如何完成这样的事情的正确方向,我相信有可能我会非常感谢你的帮助