├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── FUNDING.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README-RU.md ├── README.md ├── esbuild.config.mjs ├── jest.config.js ├── main.ts ├── manifest.json ├── package.json ├── pnpm-lock.yaml ├── release.sh ├── resources ├── create-comment-ru.gif ├── extract-original-ru.gif └── navigate-comment-ru.gif ├── shims.d.ts ├── src ├── HtmlCommentsTemplate.vue ├── comments │ ├── ConstantsAndUtils.ts │ ├── HtmlComment.ts │ ├── HtmlCommentTag.ts │ ├── OrganaizedTagsAndComments.ts │ └── TextToTreeDataParser.ts ├── internalUtils.ts ├── obsidianModal.ts ├── obsidianPlugin.ts ├── obsidianSettings.ts ├── obsidianView.ts ├── reactiveState.ts └── test │ ├── CommentContainerManipulation.test.ts │ ├── CommentParsing.test.ts │ ├── ConvertParsedCommentsToNote.test.ts │ ├── TagParsing.test.ts │ └── TagsHierarchyParsing.test.ts ├── styles.css ├── tsconfig.json ├── version-bump.mjs └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | npm node_modules 2 | build -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/LICENSE -------------------------------------------------------------------------------- /README-RU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/README-RU.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/README.md -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/jest.config.js -------------------------------------------------------------------------------- /main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/main.ts -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/release.sh -------------------------------------------------------------------------------- /resources/create-comment-ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/resources/create-comment-ru.gif -------------------------------------------------------------------------------- /resources/extract-original-ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/resources/extract-original-ru.gif -------------------------------------------------------------------------------- /resources/navigate-comment-ru.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/resources/navigate-comment-ru.gif -------------------------------------------------------------------------------- /shims.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/shims.d.ts -------------------------------------------------------------------------------- /src/HtmlCommentsTemplate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/src/HtmlCommentsTemplate.vue -------------------------------------------------------------------------------- /src/comments/ConstantsAndUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/src/comments/ConstantsAndUtils.ts -------------------------------------------------------------------------------- /src/comments/HtmlComment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/src/comments/HtmlComment.ts -------------------------------------------------------------------------------- /src/comments/HtmlCommentTag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/src/comments/HtmlCommentTag.ts -------------------------------------------------------------------------------- /src/comments/OrganaizedTagsAndComments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/src/comments/OrganaizedTagsAndComments.ts -------------------------------------------------------------------------------- /src/comments/TextToTreeDataParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/src/comments/TextToTreeDataParser.ts -------------------------------------------------------------------------------- /src/internalUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/src/internalUtils.ts -------------------------------------------------------------------------------- /src/obsidianModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/src/obsidianModal.ts -------------------------------------------------------------------------------- /src/obsidianPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/src/obsidianPlugin.ts -------------------------------------------------------------------------------- /src/obsidianSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/src/obsidianSettings.ts -------------------------------------------------------------------------------- /src/obsidianView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/src/obsidianView.ts -------------------------------------------------------------------------------- /src/reactiveState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/src/reactiveState.ts -------------------------------------------------------------------------------- /src/test/CommentContainerManipulation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/src/test/CommentContainerManipulation.test.ts -------------------------------------------------------------------------------- /src/test/CommentParsing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/src/test/CommentParsing.test.ts -------------------------------------------------------------------------------- /src/test/ConvertParsedCommentsToNote.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/src/test/ConvertParsedCommentsToNote.test.ts -------------------------------------------------------------------------------- /src/test/TagParsing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/src/test/TagParsing.test.ts -------------------------------------------------------------------------------- /src/test/TagsHierarchyParsing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/src/test/TagsHierarchyParsing.test.ts -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/styles.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BumbrT/obsidian-reading-comments/HEAD/versions.json --------------------------------------------------------------------------------