-
Hello all! I recently discover Obsidian and the amazing plugin Digital Garden Obsidian Plugin 1. It is an error with permalinks, apparently it’s creating the same permalink for different notes…I guess. I am working locally with the repository, adding some HTML and, theoretically JS and CSS. Edit: I deleted and created again my project, but the problem persist. Can anyone suggest something? I would really appreciate that. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Did you get this sorted out? Here's how the plugin sets permalinks. If it finds the tag permalink: (data) => {
if (data.tags.indexOf("gardenEntry") != -1) {
return "/";
}
return data.permalink || undefined;
}, It looks like that gets added when you check the "dg-home" checkbox in the Obsidian plugin. Are you using |
Beta Was this translation helpful? Give feedback.
Did you get this sorted out?
Here's how the plugin sets permalinks. If it finds the tag
gardenEntry
, then it sets the permalink to be the homepage.It looks like that gets added when you check the "dg-home" checkbox in the Obsidian plugin. Are you using
gardenEntry
or something similar as a tag on your notes? If so, try removing the tag.