├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yaml │ └── feature-request.yaml ├── changelog.hbs ├── dependabot.yml └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── biome.json ├── esbuild.config.mjs ├── jest.config.js ├── manifest-beta.json ├── manifest.json ├── package.json ├── src ├── @types │ ├── index.d.ts │ └── shim-eta.d.ts ├── main.ts ├── snippetor-CreateCheckboxesModal.ts ├── snippetor-CreateFoldersModal.ts ├── snippetor-CreateTemplateModal.ts ├── snippetor-Defaults.ts ├── snippetor-FolderSuggestor.ts ├── snippetor-ModalHelper.ts ├── snippetor-Plugin.ts ├── snippetor-SettingsTab.ts ├── snippetor-Snippetor-Templates.ts ├── snippetor-Snippetor.ts ├── styles.scss ├── styles │ ├── checkboxes-modal.scss │ ├── folders-modal.scss │ └── plugin-settings.scss └── templates │ ├── CHECKBOXES.eta │ └── COLORED_FOLDER.eta ├── test ├── migrateData.test.ts └── mocks │ └── obsidian.ts ├── tsconfig.json └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/.github/ISSUE_TEMPLATE/bug-report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/.github/ISSUE_TEMPLATE/feature-request.yaml -------------------------------------------------------------------------------- /.github/changelog.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/.github/changelog.hbs -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/biome.json -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/jest.config.js -------------------------------------------------------------------------------- /manifest-beta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/manifest-beta.json -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/package.json -------------------------------------------------------------------------------- /src/@types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/src/@types/index.d.ts -------------------------------------------------------------------------------- /src/@types/shim-eta.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/src/@types/shim-eta.d.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/snippetor-CreateCheckboxesModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/src/snippetor-CreateCheckboxesModal.ts -------------------------------------------------------------------------------- /src/snippetor-CreateFoldersModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/src/snippetor-CreateFoldersModal.ts -------------------------------------------------------------------------------- /src/snippetor-CreateTemplateModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/src/snippetor-CreateTemplateModal.ts -------------------------------------------------------------------------------- /src/snippetor-Defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/src/snippetor-Defaults.ts -------------------------------------------------------------------------------- /src/snippetor-FolderSuggestor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/src/snippetor-FolderSuggestor.ts -------------------------------------------------------------------------------- /src/snippetor-ModalHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/src/snippetor-ModalHelper.ts -------------------------------------------------------------------------------- /src/snippetor-Plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/src/snippetor-Plugin.ts -------------------------------------------------------------------------------- /src/snippetor-SettingsTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/src/snippetor-SettingsTab.ts -------------------------------------------------------------------------------- /src/snippetor-Snippetor-Templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/src/snippetor-Snippetor-Templates.ts -------------------------------------------------------------------------------- /src/snippetor-Snippetor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/src/snippetor-Snippetor.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/styles/checkboxes-modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/src/styles/checkboxes-modal.scss -------------------------------------------------------------------------------- /src/styles/folders-modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/src/styles/folders-modal.scss -------------------------------------------------------------------------------- /src/styles/plugin-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/src/styles/plugin-settings.scss -------------------------------------------------------------------------------- /src/templates/CHECKBOXES.eta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/src/templates/CHECKBOXES.eta -------------------------------------------------------------------------------- /src/templates/COLORED_FOLDER.eta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/src/templates/COLORED_FOLDER.eta -------------------------------------------------------------------------------- /test/migrateData.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/test/migrateData.test.ts -------------------------------------------------------------------------------- /test/mocks/obsidian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/test/mocks/obsidian.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebullient/obsidian-snippetor/HEAD/versions.json --------------------------------------------------------------------------------