Awesome
docsify-glossary: SD Development Fork
Simple Glossary for Docsify that replaces occurrences of words in text with links to the glossary definitions. Forked from TheGreenToaster/docsify-glossary as the original project was unmaintained for over 3 years, to address a couple of usability issues with the original script.
An example usage can be found here ./example, it is deployed automatically to this GitHub page.
Installation
- Download the latest version of the javascript (from our releases page)
- Add the script into your docsify source directory
- Insert script into
docsify.template.js
document
<script src="./docsify-glossary.min.js"></script>
- Create a
_glossary.md
file in the root directory - Populate the
_glossary.md
file with terms.
Plugin Usage
- Terms must be predicated with a consistent Markdown heading to get recognized by the glossary (see configuration)
- Terms are replaced with links in the order that they appear in the glossary file.
- This is especially relevant for nested terminology ( e.g. API and API Usage)
Configuration
This version of the docsify-glossary
plugin allows you to configure multiple aspects of the glossary.
An example configuration is shown here:
glossify: {
debug: false, # default
glossaryLocation: './X_Appendix/Glossary/HOME.md', # default is '_glossary.md'
terminologyHeading: '##', # default is '####', overwrite to fit your glossary heading depth
replaceTitleTerms: false # default is 'true'
}
Running the code
In order to run the code, you will need a node set-up on your local machine. We recommend using Node Version Manager to make this easier.
Building the code
- Globally install docsify:
npm i docsify-cli -g
- From the project root directory, run:
npm install
- To build the code, run:
npm run ci
- THis will compile, test, and package the plugin
View the example website
Once the code has been built, you can launch the example website illustrating the use of the glossary. In order to do so:
- Go to http://localhost:3000/
- copy the latest version of the code into the example website:
cp ./dist/@stijn-dejongh/docsify-glossary* ./example
- Run
docsify serve example
Changelog
An overview of all the changes made to this codebase can be found in the CHANGELOG file included in this repository.
TODO list
- Bump dependency versions
- add unit tests to the code to make this package more maintainable