Skip to content

Instantly share code, notes, and snippets.

@alexalannunes
Last active July 26, 2019 15:53
Show Gist options
  • Save alexalannunes/51fc4cd5fe603222221b42483598b9c6 to your computer and use it in GitHub Desktop.
Save alexalannunes/51fc4cd5fe603222221b42483598b9c6 to your computer and use it in GitHub Desktop.
$(".summernote").summernote({
height: 300, // set editor height
minHeight: null, // set minimum height of editor
maxHeight: null, // set maximum height of editor
focus: true, // set focus to editable area after initializing summernote
codemirror: {
// codemirror options
theme: "monokai"
},
toolbar: [
["paragraphstyle", ["style", "ol", "ul", "paragraph", "height"]],
["fontstyle", ["fontsize", "fontname", "color", "backcolor"]],
["insert", ["emoji", "picture", "link", "video", "table", "hr"]],
["style", ["bold", "italic", "underline", "clear"]],
["height", ["height"]],
["misc", ["undo", "redo", "fullscreen", "codeview", "help"]]
]
/** @doc https://summernote.org/deep-dive/ */
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment