From dfbf454c3e6b30a9d5542325d22706f404b293ee Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Wed, 23 Mar 2022 16:13:11 +0100 Subject: [PATCH] use proper quotation marks --- main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.ts b/main.ts index 2ec909d..73d2325 100644 --- a/main.ts +++ b/main.ts @@ -241,7 +241,7 @@ class CustomFramesSettingTab extends PluginSettingTab { } this.containerEl.createEl("hr"); - let info = this.containerEl.createEl("p", { text: "Create a new frame, either from a preset shipped with the plugin, or a custom one that you can edit yourself. Each frame's pane can be opened using the 'Custom Frames: Open' command." }); + let info = this.containerEl.createEl("p", { text: "Create a new frame, either from a preset shipped with the plugin, or a custom one that you can edit yourself. Each frame's pane can be opened using the \"Custom Frames: Open\" command." }); info.createEl("br"); info.createSpan({ text: "Note that Obsidian has to be restarted or reloaded to activate a newly added frame.", cls: "mod-warning" });