0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

fix: instantiate slugger in snippet

This commit is contained in:
bholmesdev 2022-07-11 18:10:19 -04:00
parent 4cf383f25b
commit 35f127158f

View file

@ -167,6 +167,7 @@ ${components ? `import * from '${components}';` : ''}
${hasInjectedScript ? `import '${PAGE_SSR_SCRIPT_ID}';` : ''}
${setup}
const slugger = new Slugger();
function $$slug(value) {
return slugger.slug(value);
}