├── .envrc ├── .github ├── example.png ├── show_rule_conflict.png └── workflows │ └── CI.yml ├── .gitignore ├── .mailmap ├── .vscode └── glossarium.code-workspace ├── CHANGELOG.md ├── LICENSE ├── README.md ├── advanced-docs ├── main.pdf └── main.typ ├── examples ├── full-example │ ├── main.pdf │ └── main.typ ├── groups │ ├── groups.pdf │ └── groups.typ ├── import-terms-from-yaml-file │ ├── glossary.yml │ ├── main.pdf │ └── main.typ ├── plural-example │ ├── main.pdf │ └── main.typ └── styling-attributes │ ├── styling-attributes.pdf │ └── styling-attributes.typ ├── flake.lock ├── flake.nix ├── glossarium.typ ├── justfile ├── package.sh ├── tbump.toml ├── tests ├── always-long │ ├── .gitignore │ ├── ref │ │ └── 1.png │ └── test.typ ├── back-references-divergence │ ├── ref │ │ ├── 1.png │ │ └── 2.png │ └── test.typ ├── capitalize │ ├── ref │ │ └── 1.png │ └── test.typ ├── custom-attribute │ ├── ref │ │ └── 1.png │ └── test.typ ├── custom-shorthands │ ├── .gitignore │ ├── ref │ │ └── 1.png │ └── test.typ ├── debug │ ├── ref │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ └── 6.png │ └── test.typ ├── entry-has-neither-short-nor-long │ ├── ref │ │ └── 1.png │ └── test.typ ├── figures-linebreak │ ├── ref │ │ └── 1.png │ └── test.typ ├── first-style │ ├── .gitignore │ ├── ref │ │ └── 1.png │ └── test.typ ├── glossary-start-document │ ├── ref │ │ └── 1.png │ └── test.typ ├── glossary-table │ ├── .gitignore │ ├── ref │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── 23.png │ │ ├── 24.png │ │ ├── 25.png │ │ ├── 26.png │ │ ├── 27.png │ │ ├── 28.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ └── test.typ ├── gls-in-description │ ├── .gitignore │ ├── ref │ │ └── 1.png │ ├── test.pdf │ └── test.typ ├── group-heading-pagebreak │ ├── ref │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png │ └── test.typ ├── groups │ ├── .gitignore │ ├── ref │ │ └── 1.png │ └── test.typ ├── invisible-glossary │ ├── .gitignore │ └── test.typ ├── key-already-exists-multi-registration │ └── test.typ ├── key-already-exists-single-registration │ └── test.typ ├── key-capitalization-is-ambiguous-multi-registration │ └── test.typ ├── key-capitalization-is-ambiguous-single-registration │ └── test.typ ├── long-false │ ├── ref │ │ └── 1.png │ └── test.typ ├── longplural-but-not-long │ ├── ref │ │ └── 1.png │ └── test.typ ├── make-glossary │ ├── ref │ │ └── 1.png │ └── test.typ ├── no-reference-links │ ├── .gitignore │ ├── ref │ │ └── 1.png │ └── test.typ ├── only-one-empty-group │ ├── ref │ │ └── 1.png │ └── test.typ ├── references-in-description │ ├── ref │ │ └── 1.png │ └── test.typ ├── register │ ├── .gitignore │ ├── ref │ │ └── 1.png │ └── test.typ ├── reset-usage-counts │ ├── .gitignore │ ├── ref │ │ └── 1.png │ └── test.typ ├── show-link │ ├── ref │ │ └── 1.png │ └── test.typ ├── show-ref │ ├── ref │ │ └── 1.png │ └── test.typ ├── sorting │ ├── ref │ │ └── 1.png │ └── test.typ ├── style-entries │ ├── .gitignore │ ├── ref │ │ ├── 1.png │ │ └── 2.png │ └── test.typ ├── style-is-not-a-function │ ├── .gitignore │ ├── ref │ │ └── 1.png │ └── test.typ ├── style-unknown-attribute │ ├── .gitignore │ ├── ref │ │ └── 1.png │ └── test.typ ├── style-unsupported-attribute │ ├── .gitignore │ ├── ref │ │ └── 1.png │ └── test.typ ├── styling │ ├── ref │ │ └── 1.png │ └── test.typ ├── template.typ ├── unknown-keys │ ├── ref │ │ └── 1.png │ └── test.typ ├── user-capitalization │ ├── .gitignore │ ├── ref │ │ └── 1.png │ └── test.typ ├── user-plural │ ├── .gitignore │ ├── ref │ │ └── 1.png │ └── test.typ └── whitespace │ ├── ref │ └── 1.png │ └── test.typ ├── themes └── default.typ └── typst.toml /.envrc: -------------------------------------------------------------------------------- 1 | export TYPST_ROOT=$HOME/glossarium 2 | -------------------------------------------------------------------------------- /.github/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/.github/example.png -------------------------------------------------------------------------------- /.github/show_rule_conflict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/.github/show_rule_conflict.png -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | glossarium.pdf 2 | /.gtm/ 3 | out/ 4 | diff/ 5 | -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/.mailmap -------------------------------------------------------------------------------- /.vscode/glossarium.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/.vscode/glossarium.code-workspace -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/README.md -------------------------------------------------------------------------------- /advanced-docs/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/advanced-docs/main.pdf -------------------------------------------------------------------------------- /advanced-docs/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/advanced-docs/main.typ -------------------------------------------------------------------------------- /examples/full-example/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/examples/full-example/main.pdf -------------------------------------------------------------------------------- /examples/full-example/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/examples/full-example/main.typ -------------------------------------------------------------------------------- /examples/groups/groups.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/examples/groups/groups.pdf -------------------------------------------------------------------------------- /examples/groups/groups.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/examples/groups/groups.typ -------------------------------------------------------------------------------- /examples/import-terms-from-yaml-file/glossary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/examples/import-terms-from-yaml-file/glossary.yml -------------------------------------------------------------------------------- /examples/import-terms-from-yaml-file/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/examples/import-terms-from-yaml-file/main.pdf -------------------------------------------------------------------------------- /examples/import-terms-from-yaml-file/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/examples/import-terms-from-yaml-file/main.typ -------------------------------------------------------------------------------- /examples/plural-example/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/examples/plural-example/main.pdf -------------------------------------------------------------------------------- /examples/plural-example/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/examples/plural-example/main.typ -------------------------------------------------------------------------------- /examples/styling-attributes/styling-attributes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/examples/styling-attributes/styling-attributes.pdf -------------------------------------------------------------------------------- /examples/styling-attributes/styling-attributes.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/examples/styling-attributes/styling-attributes.typ -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/flake.nix -------------------------------------------------------------------------------- /glossarium.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/glossarium.typ -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/justfile -------------------------------------------------------------------------------- /package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/package.sh -------------------------------------------------------------------------------- /tbump.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tbump.toml -------------------------------------------------------------------------------- /tests/always-long/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/always-long/.gitignore -------------------------------------------------------------------------------- /tests/always-long/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/always-long/ref/1.png -------------------------------------------------------------------------------- /tests/always-long/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/always-long/test.typ -------------------------------------------------------------------------------- /tests/back-references-divergence/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/back-references-divergence/ref/1.png -------------------------------------------------------------------------------- /tests/back-references-divergence/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/back-references-divergence/ref/2.png -------------------------------------------------------------------------------- /tests/back-references-divergence/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/back-references-divergence/test.typ -------------------------------------------------------------------------------- /tests/capitalize/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/capitalize/ref/1.png -------------------------------------------------------------------------------- /tests/capitalize/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/capitalize/test.typ -------------------------------------------------------------------------------- /tests/custom-attribute/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/custom-attribute/ref/1.png -------------------------------------------------------------------------------- /tests/custom-attribute/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/custom-attribute/test.typ -------------------------------------------------------------------------------- /tests/custom-shorthands/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/custom-shorthands/.gitignore -------------------------------------------------------------------------------- /tests/custom-shorthands/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/custom-shorthands/ref/1.png -------------------------------------------------------------------------------- /tests/custom-shorthands/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/custom-shorthands/test.typ -------------------------------------------------------------------------------- /tests/debug/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/debug/ref/1.png -------------------------------------------------------------------------------- /tests/debug/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/debug/ref/2.png -------------------------------------------------------------------------------- /tests/debug/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/debug/ref/3.png -------------------------------------------------------------------------------- /tests/debug/ref/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/debug/ref/4.png -------------------------------------------------------------------------------- /tests/debug/ref/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/debug/ref/5.png -------------------------------------------------------------------------------- /tests/debug/ref/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/debug/ref/6.png -------------------------------------------------------------------------------- /tests/debug/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/debug/test.typ -------------------------------------------------------------------------------- /tests/entry-has-neither-short-nor-long/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/entry-has-neither-short-nor-long/ref/1.png -------------------------------------------------------------------------------- /tests/entry-has-neither-short-nor-long/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/entry-has-neither-short-nor-long/test.typ -------------------------------------------------------------------------------- /tests/figures-linebreak/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/figures-linebreak/ref/1.png -------------------------------------------------------------------------------- /tests/figures-linebreak/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/figures-linebreak/test.typ -------------------------------------------------------------------------------- /tests/first-style/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/first-style/.gitignore -------------------------------------------------------------------------------- /tests/first-style/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/first-style/ref/1.png -------------------------------------------------------------------------------- /tests/first-style/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/first-style/test.typ -------------------------------------------------------------------------------- /tests/glossary-start-document/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-start-document/ref/1.png -------------------------------------------------------------------------------- /tests/glossary-start-document/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-start-document/test.typ -------------------------------------------------------------------------------- /tests/glossary-table/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/.gitignore -------------------------------------------------------------------------------- /tests/glossary-table/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/1.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/10.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/11.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/12.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/13.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/14.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/15.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/16.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/17.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/18.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/19.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/2.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/20.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/21.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/22.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/23.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/24.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/25.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/26.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/27.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/28.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/3.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/4.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/5.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/6.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/7.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/8.png -------------------------------------------------------------------------------- /tests/glossary-table/ref/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/ref/9.png -------------------------------------------------------------------------------- /tests/glossary-table/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/glossary-table/test.typ -------------------------------------------------------------------------------- /tests/gls-in-description/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/gls-in-description/.gitignore -------------------------------------------------------------------------------- /tests/gls-in-description/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/gls-in-description/ref/1.png -------------------------------------------------------------------------------- /tests/gls-in-description/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/gls-in-description/test.pdf -------------------------------------------------------------------------------- /tests/gls-in-description/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/gls-in-description/test.typ -------------------------------------------------------------------------------- /tests/group-heading-pagebreak/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/group-heading-pagebreak/ref/1.png -------------------------------------------------------------------------------- /tests/group-heading-pagebreak/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/group-heading-pagebreak/ref/2.png -------------------------------------------------------------------------------- /tests/group-heading-pagebreak/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/group-heading-pagebreak/ref/3.png -------------------------------------------------------------------------------- /tests/group-heading-pagebreak/ref/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/group-heading-pagebreak/ref/4.png -------------------------------------------------------------------------------- /tests/group-heading-pagebreak/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/group-heading-pagebreak/test.typ -------------------------------------------------------------------------------- /tests/groups/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/groups/.gitignore -------------------------------------------------------------------------------- /tests/groups/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/groups/ref/1.png -------------------------------------------------------------------------------- /tests/groups/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/groups/test.typ -------------------------------------------------------------------------------- /tests/invisible-glossary/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/invisible-glossary/.gitignore -------------------------------------------------------------------------------- /tests/invisible-glossary/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/invisible-glossary/test.typ -------------------------------------------------------------------------------- /tests/key-already-exists-multi-registration/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/key-already-exists-multi-registration/test.typ -------------------------------------------------------------------------------- /tests/key-already-exists-single-registration/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/key-already-exists-single-registration/test.typ -------------------------------------------------------------------------------- /tests/key-capitalization-is-ambiguous-multi-registration/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/key-capitalization-is-ambiguous-multi-registration/test.typ -------------------------------------------------------------------------------- /tests/key-capitalization-is-ambiguous-single-registration/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/key-capitalization-is-ambiguous-single-registration/test.typ -------------------------------------------------------------------------------- /tests/long-false/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/long-false/ref/1.png -------------------------------------------------------------------------------- /tests/long-false/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/long-false/test.typ -------------------------------------------------------------------------------- /tests/longplural-but-not-long/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/longplural-but-not-long/ref/1.png -------------------------------------------------------------------------------- /tests/longplural-but-not-long/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/longplural-but-not-long/test.typ -------------------------------------------------------------------------------- /tests/make-glossary/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/make-glossary/ref/1.png -------------------------------------------------------------------------------- /tests/make-glossary/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/make-glossary/test.typ -------------------------------------------------------------------------------- /tests/no-reference-links/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/no-reference-links/.gitignore -------------------------------------------------------------------------------- /tests/no-reference-links/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/no-reference-links/ref/1.png -------------------------------------------------------------------------------- /tests/no-reference-links/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/no-reference-links/test.typ -------------------------------------------------------------------------------- /tests/only-one-empty-group/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/only-one-empty-group/ref/1.png -------------------------------------------------------------------------------- /tests/only-one-empty-group/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/only-one-empty-group/test.typ -------------------------------------------------------------------------------- /tests/references-in-description/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/references-in-description/ref/1.png -------------------------------------------------------------------------------- /tests/references-in-description/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/references-in-description/test.typ -------------------------------------------------------------------------------- /tests/register/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/register/.gitignore -------------------------------------------------------------------------------- /tests/register/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/register/ref/1.png -------------------------------------------------------------------------------- /tests/register/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/register/test.typ -------------------------------------------------------------------------------- /tests/reset-usage-counts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/reset-usage-counts/.gitignore -------------------------------------------------------------------------------- /tests/reset-usage-counts/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/reset-usage-counts/ref/1.png -------------------------------------------------------------------------------- /tests/reset-usage-counts/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/reset-usage-counts/test.typ -------------------------------------------------------------------------------- /tests/show-link/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/show-link/ref/1.png -------------------------------------------------------------------------------- /tests/show-link/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/show-link/test.typ -------------------------------------------------------------------------------- /tests/show-ref/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/show-ref/ref/1.png -------------------------------------------------------------------------------- /tests/show-ref/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/show-ref/test.typ -------------------------------------------------------------------------------- /tests/sorting/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/sorting/ref/1.png -------------------------------------------------------------------------------- /tests/sorting/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/sorting/test.typ -------------------------------------------------------------------------------- /tests/style-entries/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/style-entries/.gitignore -------------------------------------------------------------------------------- /tests/style-entries/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/style-entries/ref/1.png -------------------------------------------------------------------------------- /tests/style-entries/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/style-entries/ref/2.png -------------------------------------------------------------------------------- /tests/style-entries/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/style-entries/test.typ -------------------------------------------------------------------------------- /tests/style-is-not-a-function/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/style-is-not-a-function/.gitignore -------------------------------------------------------------------------------- /tests/style-is-not-a-function/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/style-is-not-a-function/ref/1.png -------------------------------------------------------------------------------- /tests/style-is-not-a-function/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/style-is-not-a-function/test.typ -------------------------------------------------------------------------------- /tests/style-unknown-attribute/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/style-unknown-attribute/.gitignore -------------------------------------------------------------------------------- /tests/style-unknown-attribute/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/style-unknown-attribute/ref/1.png -------------------------------------------------------------------------------- /tests/style-unknown-attribute/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/style-unknown-attribute/test.typ -------------------------------------------------------------------------------- /tests/style-unsupported-attribute/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/style-unsupported-attribute/.gitignore -------------------------------------------------------------------------------- /tests/style-unsupported-attribute/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/style-unsupported-attribute/ref/1.png -------------------------------------------------------------------------------- /tests/style-unsupported-attribute/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/style-unsupported-attribute/test.typ -------------------------------------------------------------------------------- /tests/styling/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/styling/ref/1.png -------------------------------------------------------------------------------- /tests/styling/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/styling/test.typ -------------------------------------------------------------------------------- /tests/template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/template.typ -------------------------------------------------------------------------------- /tests/unknown-keys/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/unknown-keys/ref/1.png -------------------------------------------------------------------------------- /tests/unknown-keys/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/unknown-keys/test.typ -------------------------------------------------------------------------------- /tests/user-capitalization/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/user-capitalization/.gitignore -------------------------------------------------------------------------------- /tests/user-capitalization/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/user-capitalization/ref/1.png -------------------------------------------------------------------------------- /tests/user-capitalization/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/user-capitalization/test.typ -------------------------------------------------------------------------------- /tests/user-plural/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/user-plural/.gitignore -------------------------------------------------------------------------------- /tests/user-plural/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/user-plural/ref/1.png -------------------------------------------------------------------------------- /tests/user-plural/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/user-plural/test.typ -------------------------------------------------------------------------------- /tests/whitespace/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/whitespace/ref/1.png -------------------------------------------------------------------------------- /tests/whitespace/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/tests/whitespace/test.typ -------------------------------------------------------------------------------- /themes/default.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/themes/default.typ -------------------------------------------------------------------------------- /typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-community/glossarium/HEAD/typst.toml --------------------------------------------------------------------------------