Is it possible to include external files when using Jade’s :markdown filter?

前端 未结 3 1563
忘掉有多难
忘掉有多难 2021-02-04 08:55

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         


        
3条回答
  •  终归单人心
    2021-02-04 09:25

    First, run this command:

    npm install marked --save
    

    Then, do this:

    include:md ../path/to/markdown/file.md
    

提交回复
热议问题