Align sentence-case lint with review bot

This commit is contained in:
Danial Kalbasi 2026-05-05 12:28:42 +02:00
parent fc8d65fd95
commit b2eface2df
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ export default defineConfig([
"obsidianmd/ui/sentence-case": [
"warn",
{
brands: ["OpenAI", "ElevenLabs", "GitHub"],
brands: ["OpenAI", "ElevenLabs", "GitHub", "Markdown"],
acronyms: ["API", "TTS", "WPM", "HTML", "JSON", "CSS", "SVG", "OS", "URL", "ID", "CTA"],
},
],

View file

@ -487,7 +487,7 @@ export default class VoxPlugin extends Plugin {
const raw = await this.app.vault.cachedRead(file);
const text = stripMarkdown(raw);
if (!text.trim()) {
new Notice("The note is empty after stripping markdown.");
new Notice("The note is empty after stripping Markdown.");
return;
}