mirror of
https://github.com/mnaoumov/obsidian-smart-rename.git
synced 2026-07-22 07:40:32 +00:00
Ship a curated demo-vault/ for Smart Rename, bootstrapped by the release-injected obsidian-dev-utils demo-vault-helper. Notes walk through renaming a note while preserving backlink display text, handling invalid characters, and every setting. Add a static registerDemoVaultCoverageSuite no-app test that keeps the demo vault in sync with the PluginSettings surface, the project dprint.json (excludes demo-vault), and the README demo vault access section.
12 lines
483 B
Text
12 lines
483 B
Text
{
|
|
// Scoped markdownlint config for the demo vault. The notes are an Obsidian
|
|
// vault, so two default rules are inherently incompatible and disabled here;
|
|
// every other rule still applies so the notes stay clean.
|
|
"config": {
|
|
// Notes intentionally open with a `[Docs](...)` link, not a heading.
|
|
"MD041": false,
|
|
// `[[wikilinks]]` are Obsidian's native link syntax; markdownlint parses
|
|
// them as undefined shortcut reference links.
|
|
"MD052": false
|
|
}
|
|
}
|