web-blog/node_modules/@11ty/eleventy-plugin-syntaxhighlight/demo/eleventy-config.js

11 lines
284 B
JavaScript
Raw Normal View History

2026-05-29 18:34:34 +00:00
const syntaxHighlight = require("../.eleventy.js");
module.exports = function(eleventyConfig) {
eleventyConfig.addPlugin(syntaxHighlight, {
// alwaysWrapLineHighlights: true
preAttributes: { tabindex: 0 }
});
eleventyConfig.setTemplateFormats("njk,liquid,md,css");
};