1.1.2 • Published 8 years ago

simditor-markdown v1.1.2

Weekly downloads
30
License
-
Repository
github
Last release
8 years ago

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']
});
1.1.2

8 years ago

1.1.0

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago