├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ └── feature_request.yml └── workflows │ ├── auto-assign-issue.yml │ └── release.yml ├── .gitignore ├── .npmrc ├── CHANGELOG-beta.md ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README_tr.md ├── biome.json ├── bun.lockb ├── commit-and-tag-version.mjs ├── esbuild.config.mjs ├── hooks └── _changelog.mjs ├── manifest-beta.json ├── manifest.json ├── package.json ├── src ├── @types │ └── i18next.d.ts ├── fileSuggest.ts ├── i18n │ ├── i18next.ts │ └── locales │ │ ├── en.json │ │ ├── fr.json │ │ └── tr.json ├── interface.ts ├── main.ts ├── modals │ ├── add_folder.ts │ ├── choose_in_folder.ts │ └── manage_custom_variables.ts ├── settings.ts ├── styles.css └── utils │ ├── create_note.ts │ └── utils.ts ├── tsconfig.json └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/auto-assign-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/.github/workflows/auto-assign-issue.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" 2 | auto-install-peers=true 3 | -------------------------------------------------------------------------------- /CHANGELOG-beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/CHANGELOG-beta.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/README.md -------------------------------------------------------------------------------- /README_tr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/README_tr.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/biome.json -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/bun.lockb -------------------------------------------------------------------------------- /commit-and-tag-version.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/commit-and-tag-version.mjs -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /hooks/_changelog.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/hooks/_changelog.mjs -------------------------------------------------------------------------------- /manifest-beta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/manifest-beta.json -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/package.json -------------------------------------------------------------------------------- /src/@types/i18next.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/src/@types/i18next.d.ts -------------------------------------------------------------------------------- /src/fileSuggest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/src/fileSuggest.ts -------------------------------------------------------------------------------- /src/i18n/i18next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/src/i18n/i18next.ts -------------------------------------------------------------------------------- /src/i18n/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/src/i18n/locales/en.json -------------------------------------------------------------------------------- /src/i18n/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/src/i18n/locales/fr.json -------------------------------------------------------------------------------- /src/i18n/locales/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/src/i18n/locales/tr.json -------------------------------------------------------------------------------- /src/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/src/interface.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/modals/add_folder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/src/modals/add_folder.ts -------------------------------------------------------------------------------- /src/modals/choose_in_folder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/src/modals/choose_in_folder.ts -------------------------------------------------------------------------------- /src/modals/manage_custom_variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/src/modals/manage_custom_variables.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/utils/create_note.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/src/utils/create_note.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mara-Li/obsidian-create-note-in-folder/HEAD/tsconfig.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "1.0.0": "0.15.0" 3 | } 4 | --------------------------------------------------------------------------------