File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,9 @@ module.exports = function(eleventyConfig) {
145145 inludes : "_includes" ,
146146 output : "dist"
147147 } ,
148- passthroughFileCopy : true
148+ passthroughFileCopy : true ,
149+ markdownTemplateEngine : false ,
150+ htmlTemplateEngine : "njk"
149151 } ;
150152
151153} ;
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ duplicating navigation or footer code. Here's generally how it works:
2727 files called "partials".
2828
29292 . Replace each duplicated code snippet with a special placeholder tag. The tag
30- looks like: ` {% raw %}{% include mypartial.html %}{% endraw %} ` . This is where the content from a
30+ looks like: ` {% include mypartial.html %} ` . This is where the content from a
3131 partial will be injected.
3232
33333 . Run the ` tags build ` command to assemble the website from your source code.
You can’t perform that action at this time.
0 commit comments