I\'m building an Express.js Node app and using Jade templates. Jade provides a :markdown
filter which enables embedding Markdown code inside Jade:
h
the :md
modifier does not work for me either, but this works:
html
body
// works:
include file.md
//- does not work:
include:markdown file.md
include:md file.md
I am using docpad with the HTML5 Boilerplate template.
You also should consider the problem of no auto-generation of including *.html.jade
files of such includes:
How to auto-generate html from jade file when only included markdown file has changed in livereload development environment?