Created
July 27, 2019 04:24
-
-
Save shanoaice/b066ff21277906d542811043c8aed7ce to your computer and use it in GitHub Desktop.
marked test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const marked = require('marked'); | |
| module.exports = function({ mdText }) { | |
| const transformedHTML = marked(mdText); | |
| return transformedHTML; | |
| } | |
| //o |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment