Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
fix: allow html in markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
prescientmoon committed Jul 29, 2020
1 parent dae842e commit 3150721
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/Foreign/Marked.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,4 @@ const marked = require("marked")
*
* @param {String} input The string to parse.
*/
exports.parseMarkdown = (input) =>
marked(input, {
sanitize: true
})
exports.parseMarkdown = (input) => marked(input, {})

0 comments on commit 3150721

Please sign in to comment.