├── .eslintignore ├── .eslintrc.js ├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── .prettierrc.js ├── README.md ├── manifest.json ├── package.json ├── rollup.config.js ├── screenshot.gif ├── src ├── OpenRandomTaggedNoteModalView.svelte ├── main.ts ├── openRandomTaggedNoteModal.ts ├── settingTab.ts ├── smartRandomNoteNotice.ts ├── types.ts └── utilities.ts ├── styles.css ├── tsconfig.json └── versions.json /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichalldev/obsidian-smart-random-note/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichalldev/obsidian-smart-random-note/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichalldev/obsidian-smart-random-note/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | package-lock.json 4 | copy-to-vault.bat -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichalldev/obsidian-smart-random-note/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichalldev/obsidian-smart-random-note/HEAD/README.md -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichalldev/obsidian-smart-random-note/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichalldev/obsidian-smart-random-note/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichalldev/obsidian-smart-random-note/HEAD/rollup.config.js -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichalldev/obsidian-smart-random-note/HEAD/screenshot.gif -------------------------------------------------------------------------------- /src/OpenRandomTaggedNoteModalView.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichalldev/obsidian-smart-random-note/HEAD/src/OpenRandomTaggedNoteModalView.svelte -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichalldev/obsidian-smart-random-note/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/openRandomTaggedNoteModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichalldev/obsidian-smart-random-note/HEAD/src/openRandomTaggedNoteModal.ts -------------------------------------------------------------------------------- /src/settingTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichalldev/obsidian-smart-random-note/HEAD/src/settingTab.ts -------------------------------------------------------------------------------- /src/smartRandomNoteNotice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichalldev/obsidian-smart-random-note/HEAD/src/smartRandomNoteNotice.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichalldev/obsidian-smart-random-note/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichalldev/obsidian-smart-random-note/HEAD/src/utilities.ts -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichalldev/obsidian-smart-random-note/HEAD/tsconfig.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichalldev/obsidian-smart-random-note/HEAD/versions.json --------------------------------------------------------------------------------