2.2.4 • Published 6 years ago

bootstrap-markdown-editor v2.2.4

Weekly downloads
15
License
MIT
Repository
github
Last release
6 years ago

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 area 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.

2.2.4

6 years ago

2.2.3

6 years ago

2.2.2

6 years ago

2.2.1

6 years ago

2.2.0

6 years ago

2.0.5

6 years ago

2.0.4

6 years ago

2.0.3

6 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago