quill-delta-to-markdown
Version:
Convert from Quill Delta to Markdown
27 lines (18 loc) • 909 B
Markdown
[](https://nodei.co/npm/quill-delta-to-markdown/)
[](https://travis-ci.org/frysztak/quill-delta-to-markdown)
## Quill delta to Markdown converter
Converter from the [Delta](https://quilljs.com/docs/delta/) document format used by the [Quill](https://quilljs.com/)
text editor to Markdown.
## Usage
```javascript
const { deltaToMarkdown } = require('quill-delta-to-markdown')
const markdown = deltaToMarkdown(deltaFromElseWhere)
```
## Test
```
npm install
npm test
```
## About
This lib was forked from [rdesmartin's fork](https://github.com/rdesmartin/quill-delta-markdown) of [the Slite Team's fork](https://github.com/sliteteam/quill-delta-markdown) of
[Bart Visscher (bartv2) 's lib](https://github.com/bartv2/quill-delta-markdown). Open source!