summaryrefslogtreecommitdiffstats
path: root/packages/markdown/markdown.js
blob: bb015cc4a3a3f8d765133884966c8a5971bfbb22 (plain)
1
2
3
4
5
6
7
8
9
var mark = marked;

mark.setOptions({
  gfm: true,
  tables: true,
  breaks: true
});

Markdown = mark;