Popularity
4.6
Stable
Activity
0.0
Stable
508
9
68

Programming language: JavaScript
License: MIT License
Tags: UI Components     Markdown Editor     React     React-component     Markdown     Editor     Codemirror     Code     Wysiwyg     Md    
Latest version: v0.3.0

react-md-editor alternatives and similar libraries

Based on the "Markdown Editor" category.
Alternatively, view react-md-editor alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of react-md-editor or a related project?

Add another 'Markdown Editor' Library

README

React Markdown Editor

A Markdown Editor for React.js, built with CodeMirror.

This is a work in progress. Format application and removal is not very robust, some formats are missing.

Demo & Examples

Live demo: JedWatson.github.io/react-md-editor

To build the examples locally, run:

npm install
npm start

Then open localhost:8000 in a browser.

Installation

The easiest way to use codemirror is to install it from NPM and include it in your own React build process (using Browserify, Webpack, etc).

You can also use the standalone build by including dist/codemirror.js in your page. If you use this, make sure you have already included React, and it is available as a global variable.

npm install codemirror --save

Usage

var React = require('react'),
    Editor = require('react-md-editor');

var App = React.createClass({
    getInitialState: function() {
        return {
            code: "# Markdown"
        };
    },
    updateCode: function(newCode) {
        this.setState({
            code: newCode
        });
    },
    render: function() {
        return <Editor value={this.state.code} onChange={this.updateCode} />
    }
});

React.render(<App />, document.getElementById('app'));

Properties

  • value String the markdown
  • options Object (newValue) options passed to the CodeMirror instance
  • onChange Function (newValue) called when a change is made

See the CodeMirror API Docs for the available options.

License

MIT. Copyright (c) 2016 Jed Watson.


*Note that all licence references and agreements mentioned in the react-md-editor README section above are relevant to that project's source code only.