mirror of
https://github.com/danialkalbasi/obsidian-vox.git
synced 2026-07-22 06:50:02 +00:00
Align sentence-case lint with review bot
This commit is contained in:
parent
fc8d65fd95
commit
b2eface2df
2 changed files with 2 additions and 2 deletions
|
|
@ -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"],
|
||||
},
|
||||
],
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue