all repos — archive/homestead @ dd819c45b58088f9a98384ab237268d865836fe0

My future indieweb platform

src/modules/markdown.js (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
'use strict'

const Markdown = require('markdown-it')

const markdownOptions = {
  html: true,
  typographer: true
}

const markdown = new Markdown(markdownOptions)

module.exports = markdown.render.bind(markdown)