Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/morishjs/quill-markdown-toolbar

A Quill.js module for converting markdown text to rich text format
https://github.com/morishjs/quill-markdown-toolbar

conversion converter javascript markdown quill quilljs text-editor

Last synced: 8 days ago
JSON representation

A Quill.js module for converting markdown text to rich text format

Awesome Lists containing this project

README

        

# quill-markdown-toolbar
Quill.js module that converts pasted markdown to rich text formatting.

# Quickstart

## Install using npm

```shell
npm i quill-markdown-toolbar
```

## Install using CDN

```html

```

## Register a module
```html
<script src="https://cdn.quilljs.com/1.3.1/quill.js">

<script>
const toolbarOptions = {
container: [
['bold', 'italic', 'underline', 'strike'],
['markdown'], // Add this.
],
handlers: { // Add this.
'markdown': function () {}
}
};

var quill = new Quill('#editor', {
theme: 'snow',
modules: {
toolbar: toolbarOptions,
'markdown-toolbar': true // Add this.
}
});


```

# Demo
Paste markdown text and click the markdown button on toolbar.

![](https://media.giphy.com/media/YWoBHJ32QqTOFRQzue/giphy.gif)

# Try yourself!
If you are a visual studio code user, you can run on debug tab.

# Contribution
- For now, use the Github issues for requests/bug issues
- Reporting new bugs or adding details to existing ones
- Reproducing unconfirmed bugs
- Requesting new features

# License
MIT License