Metadata-Version: 2.1
Name: pandoc-glossary-filter
Version: 0.3.0
Summary: Pandoc filter used to generate a glossary and an acronym list common to a set of documents
License: GPL-3.0-or-later
Author: Augusto Zanellato
Author-email: augusto.zanellato@gmail.com
Requires-Python: >=3.7.2,<4.0.0
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: loguru (>=0.6.0,<0.7.0)
Requires-Dist: panflute (>=2.2.3,<3.0.0)
Requires-Dist: pyyaml (>=6.0,<7.0)
Description-Content-Type: text/markdown

# pandoc_glossary_filter

## Usage

```md
<!-- GLOSSARY -->
{g:mylabel} <!-- Inserts a glossary entry with label `mylabel` -->
{G:mylabel} <!-- Inserts a glossary entry with label `mylabel` capitalizing the first letter -->
{gs:mylabel} <!-- Inserts a glossary entry with label `mylabel` using the plural form -->
{Gs:mylabel} <!-- Inserts a glossary entry with label `mylabel` capitalizing the first letter and using the plural form -->

<!-- ACRONYMS -->
{a:myacro} <!-- Insert an acronym with label `myacro` -->
```

## TODO

- Add support for a full glossary document containing all the defined entries
- Actually usable documentation

