docusaurus-glossary
Use when working with docusaurus-plugin-glossary to configure, manage glossary terms, troubleshoot issues, and explain features
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when working with docusaurus-plugin-glossary to configure, manage glossary terms, troubleshoot issues, and explain features
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Helps develop and build Docusaurus plugins using this starter template
Use when working with docusaurus.config.js/ts files to validate or modify Docusaurus configuration
Use when creating Docusaurus plugins (remark, rehype, theme, content, lifecycle) to extend markdown, modify HTML, or add custom functionality
Use when swizzling Docusaurus theme components and editing theme elements
| name | docusaurus-glossary |
| description | Use when working with docusaurus-plugin-glossary to configure, manage glossary terms, troubleshoot issues, and explain features |
Configure the plugin in docusaurus.config.js and create a glossary JSON file:
// docusaurus.config.js - Using the preset (recommended)
module.exports = {
presets: [
[
'docusaurus-plugin-glossary/preset',
{
glossary: {
glossaryPath: 'glossary/glossary.json',
routePath: '/glossary',
},
docs: {
/* your docs config */
},
},
],
],
};
glossary/glossary.json with terms array<GlossaryTerm term="API" /> for manual control in MDXCreate/update glossary/glossary.json with term objects containing term, definition, and optional abbreviation, relatedTerms
If terms aren't linking: verify glossaryPath exists, ensure using the preset (not just plugin), clear cache with npm run clear, restart dev server
For detailed documentation, see: