├── .github └── workflows │ ├── docs.yml │ └── tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── _extensions └── acronyms │ ├── _extension.yml │ ├── acronyms.lua │ ├── acronyms_helpers.lua │ ├── acronyms_options.lua │ ├── acronyms_pandoc.lua │ ├── acronyms_styles.lua │ ├── acronyms_translations.lua │ ├── parse-acronyms.lua │ ├── shortcodes_acronyms.lua │ └── sort_acronyms.lua ├── docs ├── .gitignore ├── README.md ├── _quarto.yml ├── advanced │ ├── customized_loa_header.qmd │ ├── extending.qmd │ ├── external_file.qmd │ ├── index.qmd │ └── multi_document.qmd ├── articles │ ├── options.qmd │ ├── plural.qmd │ ├── shortcodes.qmd │ └── styles.qmd ├── getting_started.qmd ├── index.qmd └── preview_style.sh ├── example.qmd ├── preview.png └── tests ├── .gitignore ├── 01-simple ├── expected.md └── input.qmd ├── 02-custom-title ├── expected.md └── input.qmd ├── 03-no-title ├── expected.md └── input.qmd ├── 04-replace-duplicates ├── expected.md └── input.qmd ├── 05-keep-duplicates ├── expected.md └── input.qmd ├── 06-external-yaml ├── acronyms.yml ├── expected.md └── input.qmd ├── 07-multiple-external-yaml ├── acronyms1.yml ├── acronyms2.yml ├── expected.md └── input.qmd ├── 08-style-short-long ├── expected.md └── input.qmd ├── 09-style-footnote ├── expected.md └── input.qmd ├── 10-no-links ├── expected.md └── input.qmd ├── 11-missing-key ├── expected.md ├── expected.stderr └── input.qmd ├── 12-missing-unknown ├── expected.md ├── expected.stderr └── input.qmd ├── 13-insert-loa-end ├── expected.md └── input.qmd ├── 14-insert-loa-false ├── expected.md └── input.qmd ├── 15-insert-loa-false-printacronyms ├── expected.md └── input.qmd ├── 16-not-include-unused ├── Readme.md ├── expected.md └── input.qmd ├── 17-sorting-alphabetical ├── Readme.md ├── expected.md └── input.qmd ├── 18-sorting-initial ├── Readme.md ├── expected.md └── input.qmd ├── 19-sorting-usage ├── Readme.md ├── expected.md └── input.qmd ├── 20-sorting-alphabetical-case-insensitive ├── Readme.md ├── expected.md └── input.qmd ├── 21-loa-unnumbered-section ├── Readme.md ├── expected.md └── input.qmd ├── 22-shortcode-simple ├── Readme.md ├── expected.md └── input.qmd ├── 23-shortcode-specific-style ├── Readme.md ├── expected.md └── input.qmd ├── 24-shortcode-listofacronyms ├── Readme.md ├── expected.md └── input.qmd ├── 25-shortcode-firstuse ├── Readme.md ├── expected.md └── input.qmd ├── 26-shortcode-insertlinks ├── Readme.md ├── expected.md └── input.qmd ├── 27-shortcode-nonexisting ├── Readme.md ├── expected.md ├── expected.stderr └── input.qmd ├── 28-translation ├── expected.md └── input.qmd ├── 29-custom-loa-format ├── expected.md └── input.qmd ├── 30-custom-loa-format-multiple-blocks ├── expected.md └── input.qmd ├── 31-non-alphanum-characters ├── Readme.md ├── expected.md └── input.qmd ├── 32-simplified-external-format ├── Readme.md ├── acronyms_original.yml ├── acronyms_simplified.yml ├── expected.md └── input.qmd ├── 33-plural ├── Readme.md ├── expected.md └── input.qmd ├── 34-case-sentence ├── Readme.md ├── expected.md └── input.qmd ├── 35-oldcode-specific-style ├── Readme.md ├── expected.md └── input.qmd ├── 36-oldcode-firstuse ├── Readme.md ├── expected.md └── input.qmd ├── 37-oldcode-insertlinks ├── Readme.md ├── expected.md └── input.qmd ├── 38-oldcode-nonexisting ├── Readme.md ├── expected.md ├── expected.stderr └── input.qmd ├── 39-case-lower ├── expected.md └── input.qmd ├── 40-case-upper ├── expected.md └── input.qmd ├── 41-capitalize ├── Readme.md ├── expected.md └── input.qmd ├── 42-loa-header ├── Readme.md ├── expected.md └── input.qmd ├── _quarto.yml └── run_tests.py /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/README.md -------------------------------------------------------------------------------- /_extensions/acronyms/_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/_extensions/acronyms/_extension.yml -------------------------------------------------------------------------------- /_extensions/acronyms/acronyms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/_extensions/acronyms/acronyms.lua -------------------------------------------------------------------------------- /_extensions/acronyms/acronyms_helpers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/_extensions/acronyms/acronyms_helpers.lua -------------------------------------------------------------------------------- /_extensions/acronyms/acronyms_options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/_extensions/acronyms/acronyms_options.lua -------------------------------------------------------------------------------- /_extensions/acronyms/acronyms_pandoc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/_extensions/acronyms/acronyms_pandoc.lua -------------------------------------------------------------------------------- /_extensions/acronyms/acronyms_styles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/_extensions/acronyms/acronyms_styles.lua -------------------------------------------------------------------------------- /_extensions/acronyms/acronyms_translations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/_extensions/acronyms/acronyms_translations.lua -------------------------------------------------------------------------------- /_extensions/acronyms/parse-acronyms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/_extensions/acronyms/parse-acronyms.lua -------------------------------------------------------------------------------- /_extensions/acronyms/shortcodes_acronyms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/_extensions/acronyms/shortcodes_acronyms.lua -------------------------------------------------------------------------------- /_extensions/acronyms/sort_acronyms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/_extensions/acronyms/sort_acronyms.lua -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/docs/_quarto.yml -------------------------------------------------------------------------------- /docs/advanced/customized_loa_header.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/docs/advanced/customized_loa_header.qmd -------------------------------------------------------------------------------- /docs/advanced/extending.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/docs/advanced/extending.qmd -------------------------------------------------------------------------------- /docs/advanced/external_file.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/docs/advanced/external_file.qmd -------------------------------------------------------------------------------- /docs/advanced/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/docs/advanced/index.qmd -------------------------------------------------------------------------------- /docs/advanced/multi_document.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/docs/advanced/multi_document.qmd -------------------------------------------------------------------------------- /docs/articles/options.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/docs/articles/options.qmd -------------------------------------------------------------------------------- /docs/articles/plural.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/docs/articles/plural.qmd -------------------------------------------------------------------------------- /docs/articles/shortcodes.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/docs/articles/shortcodes.qmd -------------------------------------------------------------------------------- /docs/articles/styles.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/docs/articles/styles.qmd -------------------------------------------------------------------------------- /docs/getting_started.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/docs/getting_started.qmd -------------------------------------------------------------------------------- /docs/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/docs/index.qmd -------------------------------------------------------------------------------- /docs/preview_style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/docs/preview_style.sh -------------------------------------------------------------------------------- /example.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/example.qmd -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/preview.png -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/01-simple/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/01-simple/expected.md -------------------------------------------------------------------------------- /tests/01-simple/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/01-simple/input.qmd -------------------------------------------------------------------------------- /tests/02-custom-title/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/02-custom-title/expected.md -------------------------------------------------------------------------------- /tests/02-custom-title/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/02-custom-title/input.qmd -------------------------------------------------------------------------------- /tests/03-no-title/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/03-no-title/expected.md -------------------------------------------------------------------------------- /tests/03-no-title/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/03-no-title/input.qmd -------------------------------------------------------------------------------- /tests/04-replace-duplicates/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/04-replace-duplicates/expected.md -------------------------------------------------------------------------------- /tests/04-replace-duplicates/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/04-replace-duplicates/input.qmd -------------------------------------------------------------------------------- /tests/05-keep-duplicates/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/05-keep-duplicates/expected.md -------------------------------------------------------------------------------- /tests/05-keep-duplicates/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/05-keep-duplicates/input.qmd -------------------------------------------------------------------------------- /tests/06-external-yaml/acronyms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/06-external-yaml/acronyms.yml -------------------------------------------------------------------------------- /tests/06-external-yaml/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/06-external-yaml/expected.md -------------------------------------------------------------------------------- /tests/06-external-yaml/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/06-external-yaml/input.qmd -------------------------------------------------------------------------------- /tests/07-multiple-external-yaml/acronyms1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/07-multiple-external-yaml/acronyms1.yml -------------------------------------------------------------------------------- /tests/07-multiple-external-yaml/acronyms2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/07-multiple-external-yaml/acronyms2.yml -------------------------------------------------------------------------------- /tests/07-multiple-external-yaml/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/07-multiple-external-yaml/expected.md -------------------------------------------------------------------------------- /tests/07-multiple-external-yaml/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/07-multiple-external-yaml/input.qmd -------------------------------------------------------------------------------- /tests/08-style-short-long/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/08-style-short-long/expected.md -------------------------------------------------------------------------------- /tests/08-style-short-long/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/08-style-short-long/input.qmd -------------------------------------------------------------------------------- /tests/09-style-footnote/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/09-style-footnote/expected.md -------------------------------------------------------------------------------- /tests/09-style-footnote/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/09-style-footnote/input.qmd -------------------------------------------------------------------------------- /tests/10-no-links/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/10-no-links/expected.md -------------------------------------------------------------------------------- /tests/10-no-links/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/10-no-links/input.qmd -------------------------------------------------------------------------------- /tests/11-missing-key/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/11-missing-key/expected.md -------------------------------------------------------------------------------- /tests/11-missing-key/expected.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/11-missing-key/expected.stderr -------------------------------------------------------------------------------- /tests/11-missing-key/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/11-missing-key/input.qmd -------------------------------------------------------------------------------- /tests/12-missing-unknown/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/12-missing-unknown/expected.md -------------------------------------------------------------------------------- /tests/12-missing-unknown/expected.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/12-missing-unknown/expected.stderr -------------------------------------------------------------------------------- /tests/12-missing-unknown/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/12-missing-unknown/input.qmd -------------------------------------------------------------------------------- /tests/13-insert-loa-end/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/13-insert-loa-end/expected.md -------------------------------------------------------------------------------- /tests/13-insert-loa-end/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/13-insert-loa-end/input.qmd -------------------------------------------------------------------------------- /tests/14-insert-loa-false/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/14-insert-loa-false/expected.md -------------------------------------------------------------------------------- /tests/14-insert-loa-false/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/14-insert-loa-false/input.qmd -------------------------------------------------------------------------------- /tests/15-insert-loa-false-printacronyms/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/15-insert-loa-false-printacronyms/expected.md -------------------------------------------------------------------------------- /tests/15-insert-loa-false-printacronyms/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/15-insert-loa-false-printacronyms/input.qmd -------------------------------------------------------------------------------- /tests/16-not-include-unused/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/16-not-include-unused/Readme.md -------------------------------------------------------------------------------- /tests/16-not-include-unused/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/16-not-include-unused/expected.md -------------------------------------------------------------------------------- /tests/16-not-include-unused/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/16-not-include-unused/input.qmd -------------------------------------------------------------------------------- /tests/17-sorting-alphabetical/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/17-sorting-alphabetical/Readme.md -------------------------------------------------------------------------------- /tests/17-sorting-alphabetical/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/17-sorting-alphabetical/expected.md -------------------------------------------------------------------------------- /tests/17-sorting-alphabetical/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/17-sorting-alphabetical/input.qmd -------------------------------------------------------------------------------- /tests/18-sorting-initial/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/18-sorting-initial/Readme.md -------------------------------------------------------------------------------- /tests/18-sorting-initial/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/18-sorting-initial/expected.md -------------------------------------------------------------------------------- /tests/18-sorting-initial/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/18-sorting-initial/input.qmd -------------------------------------------------------------------------------- /tests/19-sorting-usage/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/19-sorting-usage/Readme.md -------------------------------------------------------------------------------- /tests/19-sorting-usage/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/19-sorting-usage/expected.md -------------------------------------------------------------------------------- /tests/19-sorting-usage/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/19-sorting-usage/input.qmd -------------------------------------------------------------------------------- /tests/20-sorting-alphabetical-case-insensitive/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/20-sorting-alphabetical-case-insensitive/Readme.md -------------------------------------------------------------------------------- /tests/20-sorting-alphabetical-case-insensitive/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/20-sorting-alphabetical-case-insensitive/expected.md -------------------------------------------------------------------------------- /tests/20-sorting-alphabetical-case-insensitive/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/20-sorting-alphabetical-case-insensitive/input.qmd -------------------------------------------------------------------------------- /tests/21-loa-unnumbered-section/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/21-loa-unnumbered-section/Readme.md -------------------------------------------------------------------------------- /tests/21-loa-unnumbered-section/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/21-loa-unnumbered-section/expected.md -------------------------------------------------------------------------------- /tests/21-loa-unnumbered-section/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/21-loa-unnumbered-section/input.qmd -------------------------------------------------------------------------------- /tests/22-shortcode-simple/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/22-shortcode-simple/Readme.md -------------------------------------------------------------------------------- /tests/22-shortcode-simple/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/22-shortcode-simple/expected.md -------------------------------------------------------------------------------- /tests/22-shortcode-simple/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/22-shortcode-simple/input.qmd -------------------------------------------------------------------------------- /tests/23-shortcode-specific-style/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/23-shortcode-specific-style/Readme.md -------------------------------------------------------------------------------- /tests/23-shortcode-specific-style/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/23-shortcode-specific-style/expected.md -------------------------------------------------------------------------------- /tests/23-shortcode-specific-style/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/23-shortcode-specific-style/input.qmd -------------------------------------------------------------------------------- /tests/24-shortcode-listofacronyms/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/24-shortcode-listofacronyms/Readme.md -------------------------------------------------------------------------------- /tests/24-shortcode-listofacronyms/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/24-shortcode-listofacronyms/expected.md -------------------------------------------------------------------------------- /tests/24-shortcode-listofacronyms/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/24-shortcode-listofacronyms/input.qmd -------------------------------------------------------------------------------- /tests/25-shortcode-firstuse/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/25-shortcode-firstuse/Readme.md -------------------------------------------------------------------------------- /tests/25-shortcode-firstuse/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/25-shortcode-firstuse/expected.md -------------------------------------------------------------------------------- /tests/25-shortcode-firstuse/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/25-shortcode-firstuse/input.qmd -------------------------------------------------------------------------------- /tests/26-shortcode-insertlinks/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/26-shortcode-insertlinks/Readme.md -------------------------------------------------------------------------------- /tests/26-shortcode-insertlinks/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/26-shortcode-insertlinks/expected.md -------------------------------------------------------------------------------- /tests/26-shortcode-insertlinks/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/26-shortcode-insertlinks/input.qmd -------------------------------------------------------------------------------- /tests/27-shortcode-nonexisting/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/27-shortcode-nonexisting/Readme.md -------------------------------------------------------------------------------- /tests/27-shortcode-nonexisting/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/27-shortcode-nonexisting/expected.md -------------------------------------------------------------------------------- /tests/27-shortcode-nonexisting/expected.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/27-shortcode-nonexisting/expected.stderr -------------------------------------------------------------------------------- /tests/27-shortcode-nonexisting/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/27-shortcode-nonexisting/input.qmd -------------------------------------------------------------------------------- /tests/28-translation/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/28-translation/expected.md -------------------------------------------------------------------------------- /tests/28-translation/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/28-translation/input.qmd -------------------------------------------------------------------------------- /tests/29-custom-loa-format/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/29-custom-loa-format/expected.md -------------------------------------------------------------------------------- /tests/29-custom-loa-format/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/29-custom-loa-format/input.qmd -------------------------------------------------------------------------------- /tests/30-custom-loa-format-multiple-blocks/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/30-custom-loa-format-multiple-blocks/expected.md -------------------------------------------------------------------------------- /tests/30-custom-loa-format-multiple-blocks/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/30-custom-loa-format-multiple-blocks/input.qmd -------------------------------------------------------------------------------- /tests/31-non-alphanum-characters/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/31-non-alphanum-characters/Readme.md -------------------------------------------------------------------------------- /tests/31-non-alphanum-characters/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/31-non-alphanum-characters/expected.md -------------------------------------------------------------------------------- /tests/31-non-alphanum-characters/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/31-non-alphanum-characters/input.qmd -------------------------------------------------------------------------------- /tests/32-simplified-external-format/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/32-simplified-external-format/Readme.md -------------------------------------------------------------------------------- /tests/32-simplified-external-format/acronyms_original.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/32-simplified-external-format/acronyms_original.yml -------------------------------------------------------------------------------- /tests/32-simplified-external-format/acronyms_simplified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/32-simplified-external-format/acronyms_simplified.yml -------------------------------------------------------------------------------- /tests/32-simplified-external-format/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/32-simplified-external-format/expected.md -------------------------------------------------------------------------------- /tests/32-simplified-external-format/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/32-simplified-external-format/input.qmd -------------------------------------------------------------------------------- /tests/33-plural/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/33-plural/Readme.md -------------------------------------------------------------------------------- /tests/33-plural/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/33-plural/expected.md -------------------------------------------------------------------------------- /tests/33-plural/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/33-plural/input.qmd -------------------------------------------------------------------------------- /tests/34-case-sentence/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/34-case-sentence/Readme.md -------------------------------------------------------------------------------- /tests/34-case-sentence/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/34-case-sentence/expected.md -------------------------------------------------------------------------------- /tests/34-case-sentence/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/34-case-sentence/input.qmd -------------------------------------------------------------------------------- /tests/35-oldcode-specific-style/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/35-oldcode-specific-style/Readme.md -------------------------------------------------------------------------------- /tests/35-oldcode-specific-style/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/35-oldcode-specific-style/expected.md -------------------------------------------------------------------------------- /tests/35-oldcode-specific-style/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/35-oldcode-specific-style/input.qmd -------------------------------------------------------------------------------- /tests/36-oldcode-firstuse/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/36-oldcode-firstuse/Readme.md -------------------------------------------------------------------------------- /tests/36-oldcode-firstuse/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/36-oldcode-firstuse/expected.md -------------------------------------------------------------------------------- /tests/36-oldcode-firstuse/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/36-oldcode-firstuse/input.qmd -------------------------------------------------------------------------------- /tests/37-oldcode-insertlinks/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/37-oldcode-insertlinks/Readme.md -------------------------------------------------------------------------------- /tests/37-oldcode-insertlinks/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/37-oldcode-insertlinks/expected.md -------------------------------------------------------------------------------- /tests/37-oldcode-insertlinks/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/37-oldcode-insertlinks/input.qmd -------------------------------------------------------------------------------- /tests/38-oldcode-nonexisting/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/38-oldcode-nonexisting/Readme.md -------------------------------------------------------------------------------- /tests/38-oldcode-nonexisting/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/38-oldcode-nonexisting/expected.md -------------------------------------------------------------------------------- /tests/38-oldcode-nonexisting/expected.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/38-oldcode-nonexisting/expected.stderr -------------------------------------------------------------------------------- /tests/38-oldcode-nonexisting/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/38-oldcode-nonexisting/input.qmd -------------------------------------------------------------------------------- /tests/39-case-lower/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/39-case-lower/expected.md -------------------------------------------------------------------------------- /tests/39-case-lower/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/39-case-lower/input.qmd -------------------------------------------------------------------------------- /tests/40-case-upper/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/40-case-upper/expected.md -------------------------------------------------------------------------------- /tests/40-case-upper/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/40-case-upper/input.qmd -------------------------------------------------------------------------------- /tests/41-capitalize/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/41-capitalize/Readme.md -------------------------------------------------------------------------------- /tests/41-capitalize/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/41-capitalize/expected.md -------------------------------------------------------------------------------- /tests/41-capitalize/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/41-capitalize/input.qmd -------------------------------------------------------------------------------- /tests/42-loa-header/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/42-loa-header/Readme.md -------------------------------------------------------------------------------- /tests/42-loa-header/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/42-loa-header/expected.md -------------------------------------------------------------------------------- /tests/42-loa-header/input.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/42-loa-header/input.qmd -------------------------------------------------------------------------------- /tests/_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/_quarto.yml -------------------------------------------------------------------------------- /tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchaput/acronyms/HEAD/tests/run_tests.py --------------------------------------------------------------------------------