bootstrap-markdown-editor

2.2.4 • Public • Published

Markdown Editor

Build Status Coverage Status npm version

Client-side markdown editor which compatible with any renderer engine.

Example of usage

var editor = new MarkdownEditor({
    container: 'content',
    markdownToHtmlConvertor: markdownToHtmlConvertor
});
editor.load();

Demo

Options

container

string or object, an Id of textarea element or element itself for wrapping in MarkdownEditorShell.

fullscreenButtonTitle

string, the title of fullscreen button which will be shown by mouse over. Defaults to Enter Fullscreen.

previewButtonTitle

string, the title of preview button which will be shown by mouse over. Defaults to Toggle Preview Mode.

markdownToHtmlConvertor

function that represents converter from markdown text (input parameter) to html (output value).

additionalButtons

array of groups of buttons to display in toolbar.

Each group should represent the following object:

{
    name: "", // name of group
    buttons: [ // array of group buttons
        {
            title: "Bold", // title of button
            className: "glyphicon glyphicon-bold", // class of button
            action: buttonAction(e) // a function that represents the action of button, where e is instance of plugin
        }
    ]
}

License

Markdown Editor is under the MIT license.

Package Sidebar

Install

npm i bootstrap-markdown-editor

Weekly Downloads

34

Version

2.2.4

License

MIT

Unpacked Size

37.2 kB

Total Files

7

Last publish

Collaborators

  • alex.titarenko