Skip to content

breeze-yang/simditor-markdown

 
 

Repository files navigation

simditor-markdown

Add a markdown editing button for Simditor. Use marked as markdown parser and to-markdown as HTML to markdown converter.

###Usage

Reference button and dependency script on your page with Simditor:

<script type="text/javascript" src="[path]/marked.js"></script>
<script type="text/javascript" src="[path]/to-markdown.js"></script>
<script type="text/javascript" src="[path]/simditor-markdown.js"></script>

<link rel="stylesheet" href="[path]/simditor-markdown.css" media="screen" charset="utf-8" />

Add markdown button config when you initialize Simditor:

var editor = new Simditor({
  textarea: $('#txt-editor'),
  toolbar: ['bold', 'italic', 'underline', 'color', '|', 'ol', 'ul', '|', 'markdown']
});

###Options

If you want to switch to markdown mode right after Simditor initialized, pass markdown: true to Simditor init options:

var editor = new Simditor({
  textarea: $('#txt-editor'),
  markdown: true,
  toolbar: ['bold', 'italic', 'underline', 'color', '|', 'ol', 'ul', '|', 'markdown']
});

About

Add markdown support for Simditor

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 41.4%
  • CoffeeScript 36.9%
  • HTML 13.4%
  • CSS 7.0%
  • Ruby 1.3%