Added markdown-it-header-sections as a requirement, allowing for section tags in HTML generation.
parent
01458f1e2e
commit
6ba8f81431
|
@ -10,6 +10,7 @@ var doT = require('dot');
|
|||
var md = require('markdown-it')({
|
||||
typographer: true
|
||||
});
|
||||
md.use(require('markdown-it-header-sections'));
|
||||
|
||||
/* ==== NEWSLETTER ========================================================== */
|
||||
// our custom build step
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"dot": "^1.0.3",
|
||||
"markdown-it": "^5.0.2"
|
||||
"markdown-it": "^5.0.2",
|
||||
"markdown-it-header-sections": "^0.2.2"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue