little fix

This commit is contained in:
alsotang 2014-11-02 23:10:29 +08:00
parent fc6ccb335c
commit 068e301d20

View File

@ -22,9 +22,9 @@ var md = new Remarkable();
md.set({
html: false, // Enable HTML tags in source
xhtmlOut: false, // Use '/' to close single tags (<br />)
breaks: true, // Convert '\n' in paragraphs into <br>
linkify: false, // Autoconvert URL-like text to links
typographer: false, // Enable smartypants and other sweet transforms
breaks: false, // Convert '\n' in paragraphs into <br>
linkify: true, // Autoconvert URL-like text to links
typographer: true, // Enable smartypants and other sweet transforms
});
md.renderer.rules.fence = function (tokens, idx) {