1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
| <script>
var simplemde = new SimpleMDE({ spellChecker: false, autosave: { enabled: true, delay: 5000, unique_id: "article_content" }, forceSync: true, toolbar: [ "bold", "italic", "heading", "|", "quote", "code", "table", "horizontal-rule", "unordered-list", "ordered-list", "|", "link", "image", "|", "side-by-side", 'fullscreen', "|", { name: "guide", action: function customFunction(editor) { var win = window.open('https://github.com/riku/Markdown-Syntax-CN/blob/master/syntax.md', '_blank'); if (win) { win.focus(); } else { alert('Please allow popups for this website'); } }, className: "fa fa-info-circle", title: "Markdown 语法!" }, { name: "publish", action: function customFunction(editor) { $('.submit-btn').click(); }, className: "fa fa-paper-plane", title: "发布文章" } ], });
</script>
|