Hoppa till innehåll

@simonhyll/starlight-glossary

Det här innehållet är inte tillgängligt på ditt språk än.

starlight-glossary

A plugin for Starlight for creating glossaries

Getting Started

Simply add the package then register it in Starlight.

pnpm add @simonhyll/starlight-glossary
astro.config.mjs
import starlightGlossary from '@simonhyll/starlight-glossary';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
plugins: [starlightGlossary({})]
})
})