1.0.31 • Published 3 years ago

react-editor-md v1.0.31

Weekly downloads
34
License
ISC
Repository
github
Last release
3 years ago

React Based Wrapper for Editor.md

Markdown-Editor

Check out react-editor-md on NPM

Your HTML template should includes the following tags:

CSS
<link rel="stylesheet" href="../assets/css/editormd.css" />
JS
<script src="../assets/js/jquery.min.js"></script>
<script src="../assets/js/editormd.js"></script>

Install

npm install react-editor-md

Examples

Edit Mode
import React, {Component} from 'react';
import {render} from 'react-dom';
import Editor from 'react-editor-md';

render(
    <Editor config={
        {
            markdown: // testEditor.getMarkdown().replace(/`/g, '\\`')
            `## Test
            \`\`\`
            console.log('what can i do for you')
            \`\`\`

            # 123123`,
            onload: (editor, func) => {
                let md = editor.getMarkdown();
                let html = editor.getHTML();
                debugger
            }
        }
    }/>,
    document.querySelector('#root')
);
Show Mode
import React, {Component} from 'react';
import {render} from 'react-dom';
import Editor from 'react-editor-md';

render(
    <Editor.EditorShow config={
        {
            markdown: // testEditor.getMarkdown().replace(/`/g, '\\`')
            `## Test
            \`\`\`
            console.log('what can i do for you')
            \`\`\`

            # 123123`
        }
    }/>,
    document.querySelector('#root')
);

More Information

Checkout the Editor.md docs for more information.

1.0.29

3 years ago

1.0.31

3 years ago

1.0.30

3 years ago

1.0.28

4 years ago

1.0.27

4 years ago

1.0.26

4 years ago

1.0.25

4 years ago

1.0.24

4 years ago

1.0.23

4 years ago

1.0.22

4 years ago

1.0.21

4 years ago

1.0.20

4 years ago

1.0.19

4 years ago

1.0.18

4 years ago

1.0.17

4 years ago

1.0.13

4 years ago

1.0.12

4 years ago

1.0.10

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago