Description
In markdown, I'd like the raw files be able to link to each other like this:
[link to other spec](OtherSpec.md)
However, when I do that, the generated HTML links are broken because they end up like this:
<a href="OtherSpec.md">link to other spec</a>
So what I end up doing is writing the markdown links like this:
[link to other spec](OtherSpec.html)
but now the links in the raw markdowns are broken.
I think it would be convenient if we could write proper markdown links, and then the spec generator would simply convert all the ".md" into ".html"...
<a href="OtherSpec.html">link to other spec</a>
Would it be alright to see this in a future build? Maybe there would be a scan first if the md files actually exist before doing the conversion, just in case the author really wants to link to an external URL with a ".md" extension.