Added markdown-it-header-sections as a requirement, allowing for section tags in HTML generation.

master
kts of kettek 2015-12-30 18:50:53 -08:00
parent 01458f1e2e
commit 6ba8f81431
2 changed files with 3 additions and 1 deletions

View File

@ -10,6 +10,7 @@ var doT = require('dot');
var md = require('markdown-it')({ var md = require('markdown-it')({
typographer: true typographer: true
}); });
md.use(require('markdown-it-header-sections'));
/* ==== NEWSLETTER ========================================================== */ /* ==== NEWSLETTER ========================================================== */
// our custom build step // our custom build step

View File

@ -1,6 +1,7 @@
{ {
"dependencies": { "dependencies": {
"dot": "^1.0.3", "dot": "^1.0.3",
"markdown-it": "^5.0.2" "markdown-it": "^5.0.2",
"markdown-it-header-sections": "^0.2.2"
} }
} }