Skip to content

Instantly share code, notes, and snippets.

View peruvianidol's full-sized avatar

Mike Aparicio peruvianidol

View GitHub Profile
@peruvianidol
peruvianidol / anchor.txt
Last active July 21, 2021 02:02
Filters in Custom Shortcodes in Eleventy
// from https://www.11ty.dev/docs/filters/#access-existing-filters
// in .eleventy.js
eleventyConfig.addPairedShortcode("anchor", function(heading) {
return `
<h2><a id="${eleventyConfig.getFilter('slug')(heading)}" href="#${eleventyConfig.getFilter('slug')(heading)}">
${heading}
</a></h2>`
});