I’ve trying to host by vault on GitHub Pages so that I can share the contents with others in my group. However, I’m finding that GitHub and Obsidian don’t exactly agree on the format for internal links.
I’ve turned off WikiLinks and I’ve tried all three link formats provided (Absolute, Relative and Shortest). Of those, Absolute and Relative seem to come closest, but still aren’t quite right.
What GitHub Pages seems to expect is an internal link in the format of:
[name](/folder/note)
Obsidian Absolute produces:
[name](folder/note) <== lacks the leading slash
Obsidian Relative produces:
[name](../folder/note) <== Adds in the '..' which confuses GitHub
Shortest completely omits the folder info, producing:
[name](note)
Is there a configuration setting I’m missing to get these links to auto-generate in the correct format?