The new version brings a curious issue. With versions < 1.2, I used internal links in this way, to make a call to page bar.md, from page foo.md:
[linking to content in bar](../bar#content)
Which was transformed correctly into:
<a href="../bar/#content">linking to content in bar</a>
Since version 1.2, the bar is intepreted differently by mkdocs serve, which breaks all such links. I realize this is highly irregular and correct call should have been:
[linking to content in bar](bar.md#content)
So please dont throw rotten tomatoes at me 🍅 .
But just to help me fix this: why this change of behavior? Has some part been reimplemented? Or has this been intentional, to prevent that kind of error in the future?
The new version brings a curious issue. With versions < 1.2, I used internal links in this way, to make a call to page
bar.md, from pagefoo.md:Which was transformed correctly into:
Since version 1.2, the
baris intepreted differently bymkdocs serve, which breaks all such links. I realize this is highly irregular and correct call should have been:So please dont throw rotten tomatoes at me 🍅 .
But just to help me fix this: why this change of behavior? Has some part been reimplemented? Or has this been intentional, to prevent that kind of error in the future?