├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── demo └── example.md ├── esbuild.config.mjs ├── manifest.json ├── package.json ├── release.mjs ├── screenshots ├── Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-15.57.34.png ├── Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-15.57.39.png ├── Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-16.28.58.gif ├── Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-16.32.11.gif ├── Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-16.40.29.gif ├── Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-17.19.23.gif ├── Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-17.23.37.png └── Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-17.24.20.png ├── src ├── callout │ └── builder.ts ├── main.ts ├── modal │ ├── modify.ts │ ├── new.ts │ └── search.ts ├── settings │ └── index.ts ├── suggest │ ├── editorIcon.ts │ ├── icon.ts │ └── inputIcon.ts └── views │ └── editor.ts ├── styles.css ├── tsconfig.json ├── version-bump.mjs └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | main.js 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/README.md -------------------------------------------------------------------------------- /demo/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/demo/example.md -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/package.json -------------------------------------------------------------------------------- /release.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/release.mjs -------------------------------------------------------------------------------- /screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-15.57.34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-15.57.34.png -------------------------------------------------------------------------------- /screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-15.57.39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-15.57.39.png -------------------------------------------------------------------------------- /screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-16.28.58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-16.28.58.gif -------------------------------------------------------------------------------- /screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-16.32.11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-16.32.11.gif -------------------------------------------------------------------------------- /screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-16.40.29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-16.40.29.gif -------------------------------------------------------------------------------- /screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-17.19.23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-17.19.23.gif -------------------------------------------------------------------------------- /screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-17.23.37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-17.23.37.png -------------------------------------------------------------------------------- /screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-17.24.20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-17.24.20.png -------------------------------------------------------------------------------- /src/callout/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/src/callout/builder.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/modal/modify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/src/modal/modify.ts -------------------------------------------------------------------------------- /src/modal/new.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/src/modal/new.ts -------------------------------------------------------------------------------- /src/modal/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/src/modal/search.ts -------------------------------------------------------------------------------- /src/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/src/settings/index.ts -------------------------------------------------------------------------------- /src/suggest/editorIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/src/suggest/editorIcon.ts -------------------------------------------------------------------------------- /src/suggest/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/src/suggest/icon.ts -------------------------------------------------------------------------------- /src/suggest/inputIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/src/suggest/inputIcon.ts -------------------------------------------------------------------------------- /src/views/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/src/views/editor.ts -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/styles.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gapmiss/inline-callouts/HEAD/versions.json --------------------------------------------------------------------------------