├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github ├── FUNDING.yml └── workflows │ └── release.yml ├── .gitignore ├── .prettierrc.js ├── LICENSE.md ├── README.md ├── Screen Shot.png ├── babel.config.js ├── esbuild.config.mjs ├── make-csl-lang-list.mjs ├── make-csl-list.mjs ├── make-locator-list.mjs ├── manifest.json ├── package.json ├── prettier.config.cjs ├── release-notes.md ├── src ├── bib │ ├── bibManager.ts │ ├── cslLangList.ts │ ├── cslList.ts │ ├── helpers.ts │ ├── tests │ │ ├── My Library.json │ │ ├── bibManager.test.ts │ │ ├── test.bib │ │ ├── test.bib.json │ │ ├── test.json │ │ ├── test.yaml │ │ ├── test.yaml.json │ │ ├── test2.bib │ │ └── test2.bib.json │ └── types.ts ├── citeSuggest │ └── citeSuggest.ts ├── editorExtension.ts ├── helpers.ts ├── lang │ ├── helpers.ts │ └── locale │ │ ├── ar.ts │ │ ├── cz.ts │ │ ├── da.ts │ │ ├── de.ts │ │ ├── en.ts │ │ ├── es.ts │ │ ├── fr.ts │ │ ├── hi.ts │ │ ├── id.ts │ │ ├── it.ts │ │ ├── ja.ts │ │ ├── ko.ts │ │ ├── nl.ts │ │ ├── no.ts │ │ ├── pl.ts │ │ ├── pt-br.ts │ │ ├── pt.ts │ │ ├── ro.ts │ │ ├── ru.ts │ │ ├── sq.ts │ │ ├── tr.ts │ │ ├── uk.ts │ │ ├── zh-cn.ts │ │ └── zh-tw.ts ├── main.ts ├── markdownPostprocessor.ts ├── parser │ ├── citeproc.ts │ ├── locators.ts │ ├── parser.ts │ └── tests │ │ ├── apa.csl │ │ ├── locale-en-US.xml │ │ ├── parser.test.ts │ │ ├── styles.ts │ │ └── test-csl.json ├── settings.tsx ├── settings │ ├── SettingItem.tsx │ ├── ZoteroPullSetting.tsx │ └── select.helpers.tsx ├── tooltip.ts ├── types.d.ts └── view.ts ├── styles.css ├── tsconfig.json ├── version-bump.mjs ├── versions.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: mgmeyers 2 | custom: https://www.buymeacoffee.com/mgme 3 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/README.md -------------------------------------------------------------------------------- /Screen Shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/Screen Shot.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/babel.config.js -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /make-csl-lang-list.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/make-csl-lang-list.mjs -------------------------------------------------------------------------------- /make-csl-list.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/make-csl-list.mjs -------------------------------------------------------------------------------- /make-locator-list.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/make-locator-list.mjs -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /release-notes.md: -------------------------------------------------------------------------------- 1 | 86918b5 Fix BBT API change 2 | -------------------------------------------------------------------------------- /src/bib/bibManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/bib/bibManager.ts -------------------------------------------------------------------------------- /src/bib/cslLangList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/bib/cslLangList.ts -------------------------------------------------------------------------------- /src/bib/cslList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/bib/cslList.ts -------------------------------------------------------------------------------- /src/bib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/bib/helpers.ts -------------------------------------------------------------------------------- /src/bib/tests/My Library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/bib/tests/My Library.json -------------------------------------------------------------------------------- /src/bib/tests/bibManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/bib/tests/bibManager.test.ts -------------------------------------------------------------------------------- /src/bib/tests/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/bib/tests/test.bib -------------------------------------------------------------------------------- /src/bib/tests/test.bib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/bib/tests/test.bib.json -------------------------------------------------------------------------------- /src/bib/tests/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/bib/tests/test.json -------------------------------------------------------------------------------- /src/bib/tests/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/bib/tests/test.yaml -------------------------------------------------------------------------------- /src/bib/tests/test.yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/bib/tests/test.yaml.json -------------------------------------------------------------------------------- /src/bib/tests/test2.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/bib/tests/test2.bib -------------------------------------------------------------------------------- /src/bib/tests/test2.bib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/bib/tests/test2.bib.json -------------------------------------------------------------------------------- /src/bib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/bib/types.ts -------------------------------------------------------------------------------- /src/citeSuggest/citeSuggest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/citeSuggest/citeSuggest.ts -------------------------------------------------------------------------------- /src/editorExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/editorExtension.ts -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/lang/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/lang/helpers.ts -------------------------------------------------------------------------------- /src/lang/locale/ar.ts: -------------------------------------------------------------------------------- 1 | // العربية 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/cz.ts: -------------------------------------------------------------------------------- 1 | // čeština 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/da.ts: -------------------------------------------------------------------------------- 1 | // Dansk 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/de.ts: -------------------------------------------------------------------------------- 1 | // Deutsch 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/lang/locale/en.ts -------------------------------------------------------------------------------- /src/lang/locale/es.ts: -------------------------------------------------------------------------------- 1 | // Español 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/fr.ts: -------------------------------------------------------------------------------- 1 | // français 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/hi.ts: -------------------------------------------------------------------------------- 1 | // हिन्दी 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/id.ts: -------------------------------------------------------------------------------- 1 | // Bahasa Indonesia 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/it.ts: -------------------------------------------------------------------------------- 1 | // Italiano 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/ja.ts: -------------------------------------------------------------------------------- 1 | // 日本語 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/ko.ts: -------------------------------------------------------------------------------- 1 | // 한국어 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/nl.ts: -------------------------------------------------------------------------------- 1 | // Nederlands 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/no.ts: -------------------------------------------------------------------------------- 1 | // Norsk 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/pl.ts: -------------------------------------------------------------------------------- 1 | // język polski 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/pt-br.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/lang/locale/pt-br.ts -------------------------------------------------------------------------------- /src/lang/locale/pt.ts: -------------------------------------------------------------------------------- 1 | // Português 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/ro.ts: -------------------------------------------------------------------------------- 1 | // Română 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/ru.ts: -------------------------------------------------------------------------------- 1 | // русский 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/sq.ts: -------------------------------------------------------------------------------- 1 | // Shqip 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/tr.ts: -------------------------------------------------------------------------------- 1 | // Türkçe 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/uk.ts: -------------------------------------------------------------------------------- 1 | // Український 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/zh-cn.ts: -------------------------------------------------------------------------------- 1 | // 简体中文 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/lang/locale/zh-tw.ts: -------------------------------------------------------------------------------- 1 | // 繁體中文 2 | 3 | export default {}; 4 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/markdownPostprocessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/markdownPostprocessor.ts -------------------------------------------------------------------------------- /src/parser/citeproc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/parser/citeproc.ts -------------------------------------------------------------------------------- /src/parser/locators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/parser/locators.ts -------------------------------------------------------------------------------- /src/parser/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/parser/parser.ts -------------------------------------------------------------------------------- /src/parser/tests/apa.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/parser/tests/apa.csl -------------------------------------------------------------------------------- /src/parser/tests/locale-en-US.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/parser/tests/locale-en-US.xml -------------------------------------------------------------------------------- /src/parser/tests/parser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/parser/tests/parser.test.ts -------------------------------------------------------------------------------- /src/parser/tests/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/parser/tests/styles.ts -------------------------------------------------------------------------------- /src/parser/tests/test-csl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/parser/tests/test-csl.json -------------------------------------------------------------------------------- /src/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/settings.tsx -------------------------------------------------------------------------------- /src/settings/SettingItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/settings/SettingItem.tsx -------------------------------------------------------------------------------- /src/settings/ZoteroPullSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/settings/ZoteroPullSetting.tsx -------------------------------------------------------------------------------- /src/settings/select.helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/settings/select.helpers.tsx -------------------------------------------------------------------------------- /src/tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/tooltip.ts -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /src/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/src/view.ts -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/styles.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/versions.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-pandoc-reference-list/HEAD/yarn.lock --------------------------------------------------------------------------------