TinyMCE — Toolbar and Plugins
Configure a blog and article toolbar: headings, lists, links, images, media, tables, and more.
This init targets long-form writing. Images and media use URLs in the dialog (no upload server in this lab).
Output
(submit to read)
Important JavaScript
tinymce.init({
selector: "#article",
menubar: "file edit view insert format tools table help",
plugins: "advlist autolink lists link image media table " +
"charmap preview anchor searchreplace visualblocks code " +
"fullscreen insertdatetime wordcount help codesample " +
"emoticons accordion",
toolbar: "undo redo | blocks fontsize | " +
"bold italic underline strikethrough | forecolor backcolor | " +
"alignleft aligncenter alignright alignjustify | " +
"bullist numlist outdent indent | " +
"link image media table accordion | blockquote codesample | " +
"removeformat | preview fullscreen code help",
automatic_uploads: false,
});