You've already forked obsidian-visualiser
Small UI improvements and fixes to project edition
This commit is contained in:
@@ -6,7 +6,7 @@ export function unifySlug(slug: string | string[]): string
|
||||
}
|
||||
export function parsePath(path: string): string
|
||||
{
|
||||
return path.toLowerCase().replaceAll(" ", "-").normalize("NFD").replace(/[\u0300-\u036f]/g, "");
|
||||
return path.toLowerCase().replaceAll(" ", "-").normalize("NFD").replaceAll(/[\u0300-\u036f]/g, "").replaceAll('(', '').replaceAll(')', '');
|
||||
}
|
||||
export function parseId(id: string | undefined): string |undefined
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user