Skip to content

Commit

Permalink
smart quotes and such on website; closes #3716
Browse files Browse the repository at this point in the history
I do not know if this actually works, but it might.

Signed-off-by: Christopher Hiller <boneskull@boneskull.com>
  • Loading branch information
boneskull committed May 18, 2020
1 parent 442cf5f commit 68eec9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .eleventy.js
Expand Up @@ -7,13 +7,13 @@ module.exports = function(eleventyConfig) {
eleventyConfig.addPassthroughCopy('docs/CNAME');
eleventyConfig.addPassthroughCopy('docs/_headers');
eleventyConfig.addPassthroughCopy('docs/favicon.ico');

eleventyConfig.addPassthroughCopy('docs/example');

/* Markdown Plugins */
const markdown = require('markdown-it')({
html: true,
linkify: true
linkify: true,
typographer: true
});

markdown.use(require('markdown-it-anchor'), {
Expand Down

0 comments on commit 68eec9e

Please sign in to comment.