@toolio/markdown
v0.1.3
Published
A wrapper for Marked.js and sanitize-html.
Downloads
17
Readme
@toolio/markdown
A wrapper for Marked.js and sanitize-html.
Install
npm install @toolio/markdown
Usage
const markdownToHtml = require('@toolio/markdown')
let markdown = `# Hello World`
Sanitized
let html = markdownToHtml(markdown, {
marked: {},
sanitizeHtml: {}
})
Not Sanitized
let html = markdownToHtml(markdown, {
marked: {}
}, false)
The first argument that
markdownToHtml()
requires is a string. The string should be the markdown you want to compile to HTML. If this argument is not provided, the program will return undefined.The second argument that
markdownToHtml()
requires is an object. Currently, it only recognizes 2 keys.marked
- Set your Marked.js Options in this object
sanitizeHtml
- Set your sanitize-html Options in this object
The last argument for
markdownToHtml()
is optional. It should be a boolean. Iffalse
, it will remove the use ofsanitize-html
completely.
License
MIT License
Copyright (c) 2020 Toolio.js
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.