grav/plugins/add-page-by-form/assets/js/simplemde_config.js

17 lines
382 B
JavaScript

$(function () {
$(".editor").each(function(){
var simplemde = new SimpleMDE({
element: this,
forceSync: true,
hideIcons: ["side-by-side", "fullscreen"],
spellChecker: false,
toolbar: ["bold", "italic", "heading", "|",
"quote", "unordered-list", "ordered-list", "|",
"link", "table", "|",
"undo", "redo", "|",
"preview", "guide"
]
});
});
});