Skip to content

Instantly share code, notes, and snippets.

View 5t3ph's full-sized avatar

Stephanie Eckles 5t3ph

View GitHub Profile
const HighlightPairedShortcode = require("@11ty/eleventy-plugin-syntaxhighlight/src/HighlightPairedShortcode");
const highlightCodeDemo = (code, lang) => {
const highlightedCode = HighlightPairedShortcode(code, lang);
return highlightedCode;
};