You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue I noticed is that formatted view does not properly support the complex page names (and I use them extensively).
What I mean by complex page names is the names that contain references to the other pages. For example [[[[search]] [[algorithm]]]] is a complex page name that links to both [[search]] and [[algorithm]] the exporter currently does not parse/render such links properly
To add another example - I have a page [[Respecting [[level of [[abstraction]]]]]] (looks scary but blessedly you can hide brackets :p)
currently exporter renders the link as follows:
/blob/master/formatted/Respecting%20%5B%5Blevel%20of%20%5B%5Babstraction.md (the address is broken and does not in fact point to the page because of the missing brackets).
Also it is attaching the link to the abstraction (innermost page) instead of the whole thing.
The text was updated successfully, but these errors were encountered:
You can see it in the new demo. This is much better than what you got, but I'm not sure what the difference is. Only the last part is correctly linked. It's a limitation of current parser, that use regex.
If you have an idea on how to improve that, a PR would be welcome 😃
Thank you for building this - it is glorious.
The issue I noticed is that formatted view does not properly support the complex page names (and I use them extensively).
What I mean by complex page names is the names that contain references to the other pages. For example
[[[[search]] [[algorithm]]]]
is a complex page name that links to both[[search]]
and[[algorithm]]
the exporter currently does not parse/render such links properlyTo add another example - I have a page
[[Respecting [[level of [[abstraction]]]]]]
(looks scary but blessedly you can hide brackets :p)currently exporter renders the link as follows:
/blob/master/formatted/Respecting%20%5B%5Blevel%20of%20%5B%5Babstraction.md (the address is broken and does not in fact point to the page because of the missing brackets).
Also it is attaching the link to the
abstraction
(innermost page) instead of the whole thing.The text was updated successfully, but these errors were encountered: