├── .auto-changelog ├── .dir-locals.el ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── check.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.org ├── Eldev ├── LICENSE ├── Makefile ├── README.org ├── citar-cache.el ├── citar-capf.el ├── citar-citeproc.el ├── citar-embark.el ├── citar-file.el ├── citar-format.el ├── citar-latex.el ├── citar-markdown.el ├── citar-org.el ├── citar.el ├── images ├── capf-md.png ├── file-browser-embark.png ├── indicators-nerd-icons.png ├── indicators.png ├── oc-styles.png ├── orderless.png ├── org-cite-embark-point.png ├── rich-ui-icons.png ├── selectrum-embark.png ├── ui-segments.png └── vertico.png └── test ├── bs-1629.org ├── citar-file-test.el ├── citar-format-test.el ├── citar-test.el ├── manual ├── citar.el ├── install.el └── run.sh └── test.bib /.auto-changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/.auto-changelog -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/CONTRIBUTING.org -------------------------------------------------------------------------------- /Eldev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/Eldev -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/README.org -------------------------------------------------------------------------------- /citar-cache.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/citar-cache.el -------------------------------------------------------------------------------- /citar-capf.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/citar-capf.el -------------------------------------------------------------------------------- /citar-citeproc.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/citar-citeproc.el -------------------------------------------------------------------------------- /citar-embark.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/citar-embark.el -------------------------------------------------------------------------------- /citar-file.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/citar-file.el -------------------------------------------------------------------------------- /citar-format.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/citar-format.el -------------------------------------------------------------------------------- /citar-latex.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/citar-latex.el -------------------------------------------------------------------------------- /citar-markdown.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/citar-markdown.el -------------------------------------------------------------------------------- /citar-org.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/citar-org.el -------------------------------------------------------------------------------- /citar.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/citar.el -------------------------------------------------------------------------------- /images/capf-md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/images/capf-md.png -------------------------------------------------------------------------------- /images/file-browser-embark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/images/file-browser-embark.png -------------------------------------------------------------------------------- /images/indicators-nerd-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/images/indicators-nerd-icons.png -------------------------------------------------------------------------------- /images/indicators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/images/indicators.png -------------------------------------------------------------------------------- /images/oc-styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/images/oc-styles.png -------------------------------------------------------------------------------- /images/orderless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/images/orderless.png -------------------------------------------------------------------------------- /images/org-cite-embark-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/images/org-cite-embark-point.png -------------------------------------------------------------------------------- /images/rich-ui-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/images/rich-ui-icons.png -------------------------------------------------------------------------------- /images/selectrum-embark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/images/selectrum-embark.png -------------------------------------------------------------------------------- /images/ui-segments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/images/ui-segments.png -------------------------------------------------------------------------------- /images/vertico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/images/vertico.png -------------------------------------------------------------------------------- /test/bs-1629.org: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/citar-file-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/test/citar-file-test.el -------------------------------------------------------------------------------- /test/citar-format-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/test/citar-format-test.el -------------------------------------------------------------------------------- /test/citar-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/test/citar-test.el -------------------------------------------------------------------------------- /test/manual/citar.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/test/manual/citar.el -------------------------------------------------------------------------------- /test/manual/install.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/test/manual/install.el -------------------------------------------------------------------------------- /test/manual/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/test/manual/run.sh -------------------------------------------------------------------------------- /test/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-citar/citar/HEAD/test/test.bib --------------------------------------------------------------------------------