summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/blog.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/source/blog.js b/source/blog.js
index 22a7cfc..cc654dd 100644
--- a/source/blog.js
+++ b/source/blog.js
@@ -2,9 +2,11 @@ const fs = require('fs')
const path = require('path')
const markdownit = require('markdown-it')
const md = markdownit({
- typographer: {
- whitespace: 'all'
- }
+ html: true,
+ breaks: true,
+ typographer: {
+ whitespace: 'all'
+ },
})
const logger = require('./logger')()