From a73b1ffa95932c48ca54900e238f532b93cbfc0b Mon Sep 17 00:00:00 2001 From: m-kk <46383441+m-kk@users.noreply.github.com> Date: Fri, 7 Nov 2025 14:38:06 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20expand=20abbreviations=20?= =?UTF-8?q?in=20UI=20text=20for=20sentence=20case=20compliance?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed "Debug TOC metadata" to "Debug table of contents metadata" and "Exclude H1 headings" to "Exclude level 1 headings" to avoid abbreviations in user-facing text per Obsidian UI guidelines. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.ts b/main.ts index 4a6d39c..2ff790b 100644 --- a/main.ts +++ b/main.ts @@ -102,7 +102,7 @@ export default class TableOfContentsPlugin extends Plugin { // Add debug command to help troubleshoot TOC issues this.addCommand({ id: 'debug-toc-markers', - name: 'Debug TOC metadata', + name: 'Debug table of contents metadata', callback: () => { this.debugTOCMarkers(); } @@ -730,7 +730,7 @@ class TOCSettingTab extends PluginSettingTab { })); new Setting(containerEl) - .setName('Exclude H1 headings') + .setName('Exclude level 1 headings') .setDesc('Skip level 1 headings when generating the table of contents') .addToggle(toggle => toggle .setValue(this.plugin.settings.excludeH1)