diff --git a/eleventy.config.js b/eleventy.config.js index 9695d7d..ac5aaea 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -22,9 +22,16 @@ const markdown = new markdownIt({ html: true }).use( await shikiHighlight({ defaultColor: false, themes: { - dark: `github-dark`, - light: `github-light`, + dark: 'github-dark', + light: 'github-light', }, + transformers: [ + { + pre(node) { + delete node.properties.tabindex; + }, + }, + ], }), );