Skip to content

Commit

Permalink
Merge pull request laobubu#45 from 0xGG/fix/disable-typographer
Browse files Browse the repository at this point in the history
fix: Disabled typographer
  • Loading branch information
shd101wyy authored May 1, 2020
2 parents bd6882d + 3333952 commit 6a87f22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vickymd",
"version": "0.1.25",
"version": "0.1.26",
"description": "An experimental WYSIWYG markdown editor built on top of HyperMD with extended Widgets support",
"main": "./everything.js",
"types": "./everything.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/preview/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ declare var html2pdf: typeof import("html2pdf.js").default;
const md = new MarkdownIt({
html: true,
linkify: true,
typographer: true,
typographer: false, // The single quote will be rendered incorrectly, so disabled here.
breaks: true,
});

Expand Down

0 comments on commit 6a87f22

Please sign in to comment.