├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── docs.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .npmrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── demo.gif └── modal.gif ├── docs ├── docs │ ├── CHANGELOG.md │ ├── additional │ │ ├── quote-maker.md │ │ ├── refreshing-blocks.md │ │ └── statistics.md │ ├── assets │ │ ├── css │ │ │ └── extra.css │ │ ├── lq190.mp4 │ │ ├── obsidian.png │ │ ├── quote-maker.gif │ │ ├── refresh-button.png │ │ └── statistics.png │ ├── block-types │ │ ├── one-time-quote-block.md │ │ └── quote-block.md │ ├── breaking │ │ └── moving-from-0.x.x-to-1.x.x.md │ ├── index.md │ └── terms │ │ ├── quote-listings.md │ │ └── search.md └── mkdocs.yml ├── esbuild.config.mjs ├── jest.config.js ├── manifest.json ├── package.json ├── src ├── consts.ts ├── libs │ └── remove_markdown.ts ├── main.ts ├── processors │ ├── code-block.ts │ └── modals │ │ ├── functions.ts │ │ ├── one-time-quote-maker.ts │ │ ├── quote-maker.ts │ │ ├── quote-vault-error.ts │ │ └── statistics.ts ├── settings.ts ├── tests │ ├── parser.test.ts │ ├── regexp.test.ts │ └── remove_markdown.test.ts ├── types │ ├── block-metadata.ts │ ├── one-time-block.ts │ └── quote.ts └── utils │ ├── date.ts │ ├── dom.ts │ ├── file.ts │ ├── parser.ts │ ├── quoteVault.ts │ ├── random.ts │ └── scan.ts ├── styles.css ├── tsconfig.json ├── version-bump.mjs ├── versions.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | npm node_modules 2 | build -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /assets/modal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/assets/modal.gif -------------------------------------------------------------------------------- /docs/docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/docs/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/docs/additional/quote-maker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/docs/docs/additional/quote-maker.md -------------------------------------------------------------------------------- /docs/docs/additional/refreshing-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/docs/docs/additional/refreshing-blocks.md -------------------------------------------------------------------------------- /docs/docs/additional/statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/docs/docs/additional/statistics.md -------------------------------------------------------------------------------- /docs/docs/assets/css/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/docs/docs/assets/css/extra.css -------------------------------------------------------------------------------- /docs/docs/assets/lq190.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/docs/docs/assets/lq190.mp4 -------------------------------------------------------------------------------- /docs/docs/assets/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/docs/docs/assets/obsidian.png -------------------------------------------------------------------------------- /docs/docs/assets/quote-maker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/docs/docs/assets/quote-maker.gif -------------------------------------------------------------------------------- /docs/docs/assets/refresh-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/docs/docs/assets/refresh-button.png -------------------------------------------------------------------------------- /docs/docs/assets/statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/docs/docs/assets/statistics.png -------------------------------------------------------------------------------- /docs/docs/block-types/one-time-quote-block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/docs/docs/block-types/one-time-quote-block.md -------------------------------------------------------------------------------- /docs/docs/block-types/quote-block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/docs/docs/block-types/quote-block.md -------------------------------------------------------------------------------- /docs/docs/breaking/moving-from-0.x.x-to-1.x.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/docs/docs/breaking/moving-from-0.x.x-to-1.x.x.md -------------------------------------------------------------------------------- /docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/docs/docs/index.md -------------------------------------------------------------------------------- /docs/docs/terms/quote-listings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/docs/docs/terms/quote-listings.md -------------------------------------------------------------------------------- /docs/docs/terms/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/docs/docs/terms/search.md -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/jest.config.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/package.json -------------------------------------------------------------------------------- /src/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/consts.ts -------------------------------------------------------------------------------- /src/libs/remove_markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/libs/remove_markdown.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/processors/code-block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/processors/code-block.ts -------------------------------------------------------------------------------- /src/processors/modals/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/processors/modals/functions.ts -------------------------------------------------------------------------------- /src/processors/modals/one-time-quote-maker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/processors/modals/one-time-quote-maker.ts -------------------------------------------------------------------------------- /src/processors/modals/quote-maker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/processors/modals/quote-maker.ts -------------------------------------------------------------------------------- /src/processors/modals/quote-vault-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/processors/modals/quote-vault-error.ts -------------------------------------------------------------------------------- /src/processors/modals/statistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/processors/modals/statistics.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/tests/parser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/tests/parser.test.ts -------------------------------------------------------------------------------- /src/tests/regexp.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/tests/regexp.test.ts -------------------------------------------------------------------------------- /src/tests/remove_markdown.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/tests/remove_markdown.test.ts -------------------------------------------------------------------------------- /src/types/block-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/types/block-metadata.ts -------------------------------------------------------------------------------- /src/types/one-time-block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/types/one-time-block.ts -------------------------------------------------------------------------------- /src/types/quote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/types/quote.ts -------------------------------------------------------------------------------- /src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/utils/date.ts -------------------------------------------------------------------------------- /src/utils/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/utils/dom.ts -------------------------------------------------------------------------------- /src/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/utils/file.ts -------------------------------------------------------------------------------- /src/utils/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/utils/parser.ts -------------------------------------------------------------------------------- /src/utils/quoteVault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/utils/quoteVault.ts -------------------------------------------------------------------------------- /src/utils/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/utils/random.ts -------------------------------------------------------------------------------- /src/utils/scan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/src/utils/scan.ts -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/styles.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/versions.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sundevista/local-quotes/HEAD/yarn.lock --------------------------------------------------------------------------------