diff --git a/README.md b/README.md index 278b2e7..44b3a46 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,40 @@ A plugin for displaying inline "callouts" in [Obsidian.md](https://github.com/ob

+### Search for inline callout modal + +
+ 👇️ Show GIF screencast +

+

+ Icon suggestion modal +

+
+ + +### Style Settings plugin settings + +
+ 👇️ Show screenshot +

+

+ Style Settings plugin settings +

+
+ + +### Settings + +
+ 👇️ Show screenshot +

+

+ Settings +

+
+ + + ## Usage ### Syntax diff --git a/screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-17.19.23.gif b/screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-17.19.23.gif new file mode 100644 index 0000000..afd59df Binary files /dev/null and b/screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-17.19.23.gif differ diff --git a/screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-17.23.37.png b/screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-17.23.37.png new file mode 100644 index 0000000..071e75a Binary files /dev/null and b/screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-17.23.37.png differ diff --git a/screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-17.24.20.png b/screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-17.24.20.png new file mode 100644 index 0000000..5663b67 Binary files /dev/null and b/screenshots/Inline-Callouts-demo-Obsidian-v1.8.9-2025-04-06-17.24.20.png differ diff --git a/src/modal/modify.ts b/src/modal/modify.ts index be9fb7a..a41b837 100644 --- a/src/modal/modify.ts +++ b/src/modal/modify.ts @@ -132,12 +132,10 @@ export class ModifyInlineCalloutModal extends Modal { "var(--color-red-rgb)": "Red", "var(--color-yellow-rgb)": "Yellow", }) - // .setValue(this.calloutColor!) .setValue(this.calloutColor?.startsWith("var(--color") ? this.calloutColor : '') .onChange((value) => { if (value !== '') { this.calloutColor = value; - // this.calloutIcon = this.calloutIcon; this.buildPreview(); this.display(false, false, true); setTimeout(() => {