Use Markdown typographer (auto-generates smart quotes)

This commit is contained in:
Shadowfacts 2019-06-29 15:02:14 -04:00
parent 8a490a362c
commit 2fe034aef5
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,8 @@ import * as util from "./util";
const md = new MarkdownIt({
highlight: util.highlight,
html: true
html: true,
typographer: true
});
export function render(text: string): string {