├── .changeset ├── .markdownlint.json └── config.json ├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ ├── push.yml │ └── rolling.yml ├── .gitignore ├── .markdownlint.json ├── .npmrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── assets ├── locales.ts ├── locales │ ├── README.md │ ├── af │ │ └── translation.json │ ├── am │ │ └── translation.json │ ├── ar │ │ └── translation.json │ ├── be │ │ └── translation.json │ ├── bg │ │ └── translation.json │ ├── bn │ │ └── translation.json │ ├── ca │ │ └── translation.json │ ├── cs │ │ └── translation.json │ ├── da │ │ └── translation.json │ ├── de │ │ └── translation.json │ ├── el │ │ └── translation.json │ ├── en │ │ ├── asset.json │ │ ├── language.json │ │ └── translation.json │ ├── eo │ │ └── translation.json │ ├── es │ │ └── translation.json │ ├── eu │ │ └── translation.json │ ├── fa │ │ └── translation.json │ ├── fi │ │ └── translation.json │ ├── fr │ │ └── translation.json │ ├── gl │ │ └── translation.json │ ├── he │ │ └── translation.json │ ├── hi │ │ └── translation.json │ ├── hu │ │ └── translation.json │ ├── id │ │ └── translation.json │ ├── it │ │ └── translation.json │ ├── ja │ │ └── translation.json │ ├── ko │ │ └── translation.json │ ├── lv │ │ └── translation.json │ ├── ml │ │ └── translation.json │ ├── ms │ │ └── translation.json │ ├── nl │ │ └── translation.json │ ├── no │ │ └── translation.json │ ├── oc │ │ └── translation.json │ ├── pl │ │ └── translation.json │ ├── pt-BR │ │ └── translation.json │ ├── pt │ │ └── translation.json │ ├── ro │ │ └── translation.json │ ├── ru │ │ └── translation.json │ ├── se │ │ └── translation.json │ ├── sk │ │ └── translation.json │ ├── sq │ │ └── translation.json │ ├── sr │ │ └── translation.json │ ├── ta │ │ └── translation.json │ ├── te │ │ └── translation.json │ ├── th │ │ └── translation.json │ ├── tr │ │ └── translation.json │ ├── uk │ │ └── translation.json │ ├── ur │ │ └── translation.json │ ├── zh-Hans │ │ └── translation.json │ └── zh-Hant │ │ └── translation.json └── trailer.png ├── eslint.config.mjs ├── manifest-beta.json ├── manifest.json ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── src ├── @types │ ├── _dataview.d.ts │ ├── _index.d.ts │ ├── _obsidian-modules.d.ts │ ├── _templater-obsidian.d.ts │ ├── dataview.ts │ ├── i18next.ts │ ├── index.ts │ ├── obsidian-modules.ts │ ├── obsidian.ts │ └── templater-obsidian.ts ├── documentations.ts ├── import.ts ├── magic.ts ├── main.ts ├── require │ ├── context.ts │ ├── require.ts │ ├── resolve.ts │ ├── startup-modules.ts │ └── transpile.ts ├── settings-data.ts ├── settings.ts ├── styles.css ├── util.ts └── worker.ts ├── tsconfig.json └── versions.json /.changeset/.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/.changeset/.markdownlint.json -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.github/workflows/rolling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/.github/workflows/rolling.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/.npmrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales.ts -------------------------------------------------------------------------------- /assets/locales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/README.md -------------------------------------------------------------------------------- /assets/locales/af/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/af/translation.json -------------------------------------------------------------------------------- /assets/locales/am/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/am/translation.json -------------------------------------------------------------------------------- /assets/locales/ar/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/ar/translation.json -------------------------------------------------------------------------------- /assets/locales/be/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/be/translation.json -------------------------------------------------------------------------------- /assets/locales/bg/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/bg/translation.json -------------------------------------------------------------------------------- /assets/locales/bn/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/bn/translation.json -------------------------------------------------------------------------------- /assets/locales/ca/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/ca/translation.json -------------------------------------------------------------------------------- /assets/locales/cs/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/cs/translation.json -------------------------------------------------------------------------------- /assets/locales/da/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/da/translation.json -------------------------------------------------------------------------------- /assets/locales/de/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/de/translation.json -------------------------------------------------------------------------------- /assets/locales/el/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/el/translation.json -------------------------------------------------------------------------------- /assets/locales/en/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/en/asset.json -------------------------------------------------------------------------------- /assets/locales/en/language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/en/language.json -------------------------------------------------------------------------------- /assets/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/en/translation.json -------------------------------------------------------------------------------- /assets/locales/eo/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/eo/translation.json -------------------------------------------------------------------------------- /assets/locales/es/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/es/translation.json -------------------------------------------------------------------------------- /assets/locales/eu/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/eu/translation.json -------------------------------------------------------------------------------- /assets/locales/fa/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/fa/translation.json -------------------------------------------------------------------------------- /assets/locales/fi/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/fi/translation.json -------------------------------------------------------------------------------- /assets/locales/fr/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/fr/translation.json -------------------------------------------------------------------------------- /assets/locales/gl/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/gl/translation.json -------------------------------------------------------------------------------- /assets/locales/he/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/he/translation.json -------------------------------------------------------------------------------- /assets/locales/hi/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/hi/translation.json -------------------------------------------------------------------------------- /assets/locales/hu/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/hu/translation.json -------------------------------------------------------------------------------- /assets/locales/id/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/id/translation.json -------------------------------------------------------------------------------- /assets/locales/it/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/it/translation.json -------------------------------------------------------------------------------- /assets/locales/ja/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/ja/translation.json -------------------------------------------------------------------------------- /assets/locales/ko/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/ko/translation.json -------------------------------------------------------------------------------- /assets/locales/lv/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/lv/translation.json -------------------------------------------------------------------------------- /assets/locales/ml/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/ml/translation.json -------------------------------------------------------------------------------- /assets/locales/ms/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/ms/translation.json -------------------------------------------------------------------------------- /assets/locales/nl/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/nl/translation.json -------------------------------------------------------------------------------- /assets/locales/no/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/no/translation.json -------------------------------------------------------------------------------- /assets/locales/oc/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/oc/translation.json -------------------------------------------------------------------------------- /assets/locales/pl/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/pl/translation.json -------------------------------------------------------------------------------- /assets/locales/pt-BR/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/pt-BR/translation.json -------------------------------------------------------------------------------- /assets/locales/pt/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/pt/translation.json -------------------------------------------------------------------------------- /assets/locales/ro/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/ro/translation.json -------------------------------------------------------------------------------- /assets/locales/ru/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/ru/translation.json -------------------------------------------------------------------------------- /assets/locales/se/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/se/translation.json -------------------------------------------------------------------------------- /assets/locales/sk/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/sk/translation.json -------------------------------------------------------------------------------- /assets/locales/sq/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/sq/translation.json -------------------------------------------------------------------------------- /assets/locales/sr/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/sr/translation.json -------------------------------------------------------------------------------- /assets/locales/ta/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/ta/translation.json -------------------------------------------------------------------------------- /assets/locales/te/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/te/translation.json -------------------------------------------------------------------------------- /assets/locales/th/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/th/translation.json -------------------------------------------------------------------------------- /assets/locales/tr/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/tr/translation.json -------------------------------------------------------------------------------- /assets/locales/uk/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/uk/translation.json -------------------------------------------------------------------------------- /assets/locales/ur/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/ur/translation.json -------------------------------------------------------------------------------- /assets/locales/zh-Hans/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/zh-Hans/translation.json -------------------------------------------------------------------------------- /assets/locales/zh-Hant/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/locales/zh-Hant/translation.json -------------------------------------------------------------------------------- /assets/trailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/assets/trailer.png -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /manifest-beta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/manifest-beta.json -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /src/@types/_dataview.d.ts: -------------------------------------------------------------------------------- 1 | declare module "dataview" { } 2 | -------------------------------------------------------------------------------- /src/@types/_index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/@types/_index.d.ts -------------------------------------------------------------------------------- /src/@types/_obsidian-modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/@types/_obsidian-modules.d.ts -------------------------------------------------------------------------------- /src/@types/_templater-obsidian.d.ts: -------------------------------------------------------------------------------- 1 | declare module "templater-obsidian" { } 2 | -------------------------------------------------------------------------------- /src/@types/dataview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/@types/dataview.ts -------------------------------------------------------------------------------- /src/@types/i18next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/@types/i18next.ts -------------------------------------------------------------------------------- /src/@types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/@types/index.ts -------------------------------------------------------------------------------- /src/@types/obsidian-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/@types/obsidian-modules.ts -------------------------------------------------------------------------------- /src/@types/obsidian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/@types/obsidian.ts -------------------------------------------------------------------------------- /src/@types/templater-obsidian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/@types/templater-obsidian.ts -------------------------------------------------------------------------------- /src/documentations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/documentations.ts -------------------------------------------------------------------------------- /src/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/import.ts -------------------------------------------------------------------------------- /src/magic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/magic.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/require/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/require/context.ts -------------------------------------------------------------------------------- /src/require/require.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/require/require.ts -------------------------------------------------------------------------------- /src/require/resolve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/require/resolve.ts -------------------------------------------------------------------------------- /src/require/startup-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/require/startup-modules.ts -------------------------------------------------------------------------------- /src/require/transpile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/require/transpile.ts -------------------------------------------------------------------------------- /src/settings-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/settings-data.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- 1 | @import "@polyipseity/obsidian-plugin-library/style"; -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/util.ts -------------------------------------------------------------------------------- /src/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/src/worker.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/tsconfig.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyipseity/obsidian-modules/HEAD/versions.json --------------------------------------------------------------------------------