blob: 1491e24a511706bf159b431760613a1d5ecc564f (
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);
}
|