React wrapper for simplemde markdown editor

Ben Lodge 35ff4da115 revert version change - already published... 9 years ago
demo f5d917d10c temporary fix for typo dep issue 9 years ago
dist 8485c64056 export as umd 9 years ago
src f5d917d10c temporary fix for typo dep issue 9 years ago
.gitignore b13ab978e5 remove logs 9 years ago
README.md d26cb715d1 Fix typo in Readme.md 9 years ago
gulpfile.js cfd6bbd402 update build files 9 years ago
package.json 35ff4da115 revert version change - already published... 9 years ago
webpack.config.js 8485c64056 export as umd 9 years ago

README.md

React SimpleMDE Markdown Editor

NPM version

React component wrapper for SimpleMDE.

Only two dependencies, React and SimpleMDE.

Contribute

This is a WIP, if you find this component useful, contributions are appreciated, see issues.

New in version 3.0

The initialValue prop has been removed and replaced with a value prop, allowing direct changes to the value to be made after the component mounts.

New in version 2.0

Version 1.0 did not have SimpleMDE options configured well, this readme reflects the changes made to better include options. This is still a very new project. Testing, feedback and PRs are welcome and appreciated.

Install

npm install --save react-simplemde-editor

Demo

http://www.benrlodge.com/projects/react-simplemde

or view it locally:

git clone https://github.com/benrlodge/react-simplemde-editor.git
cd react-simplemde-editor
npm install
cd demo
gulp
open browser to localhost:5555

Usage

View the demo code for a full example.

Not required, but useless without it, the onChange callback is the only option you need to set.

var React = require('react');
var SimpleMDE = require('react-simplemde-editor');

<SimpleMDE
  onChange={this.handleChange}
/>

Options

Set additional SimpleMDE options with an options prop.

Note - while SimpleMDE options has an initialValue option, this component only takes a value prop which is set as the initialValue on first render.

var React = require('react');
var SimpleMDE = require('react-simplemde-editor');

<SimpleMDE
  onChange={this.handleChange}
  options={{
    autofocus: true,
    spellChecker: false,
    value: this.state.textValue
    // etc.
  }}
/>

You can include key maps using the extraKeys prop. Read more at https://codemirror.net/doc/manual.html#option_extraKeys

extraKeys = {
  Up: function(cm) {
    cm.replaceSelection(" surprise. ");
  },
  Down: function(cm) {
    cm.replaceSelection(" surprise again! ");
  }
};

<SimpleMDE
  onChange={this.handleChange}
  extraKeys={extraKeys}
/>