ppeetteerrs / obsidian-zola

A no-brainer solution to turning your Obsidian PKM into a Zola site.
http://peteryuen.netlify.app/
MIT License
684 stars 138 forks source link

Enabling multiple Obsidian repositories under one homepage #53

Open patrykpalej opened 2 years ago

patrykpalej commented 2 years ago

I think that it would be great to scale up an obsidian-zola page by enabling multiple repositories linked to a single homepage:

homepage

Does this framework allow for that? Currently routing is the following: <page_name>.netlify.app/docs/<note-name>

It could be changed to:

<page_name>.netlify.app/repo1/<note-name>
<page_name>.netlify.app/repo2/<note-name>
...

where each subpage would refer to another GH repo and would be associated with another button. It would help to organize big PKMs which contain several separate parts.

I tried to implement it on my own but had some issues. I duplicated parts of code with "docs/" and named it with another subfolder name but I cannot find where exactly the pointed GH repo with the content is associated with ".../docs/..." subpage. Not even sure if this framework supports such en extension. Has anyone tried?