Dev version (0.5.0.0) broke relative links - Neuron

Welcome to the Functional Programming Zulip Chat Archive. You can join the chat here.

felko

It seems that we can't browse zettelkastens by opening the HTML files using file:// anymore because the zettel links point to file://note-id.html instead of file:///path/to/the/zettelkasten/.neuron/output/note-id.html (which was the previous behavior)

Sridhar Ratnakumar

https://github.com/srid/neuron/issues/188

When the generated site is opened directly (file://) the links still point to base /. This is a regression in the recent reflex-dom migration. URLs work on the http:// version.
Sridhar Ratnakumar

Its because of hardcoding urls. Removing the preceding / should fix it temporarily, but I need to do a proper fix. (Can't Rib.Route because of dependency issue in rib)

felko

yup that worked, thanks