blob: 4f099307fb0cca0ce3010b7f371b6bd7d1ec6fed (
plain) (
blame)
1
2
3
4
5
6
7
8
|
/** Utilities used in deployment-ready SSR bundles */
import Slugger from 'github-slugger';
const slugger = new Slugger();
/** @see {@link "/packages/astro/vite-plugin-markdown"} */
export function slug(value: string): string {
return slugger.slug(value);
}
|