Skip to content

Commit 47172b7

Browse files
committed
Fixes #424
1 parent 638155b commit 47172b7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.eleventy.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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
};

src/site/generators/tags.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ duplicating navigation or footer code. Here's generally how it works:
2727
files called "partials".
2828

2929
2. 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

3333
3. Run the `tags build` command to assemble the website from your source code.

0 commit comments

Comments
 (0)