'use strict' const Markdown = require('markdown-it') const markdownOptions = { html: true, typographer: true } const markdown = new Markdown(markdownOptions) module.exports = markdown.render.bind(markdown)