-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Links containing anchors #106
Comments
Looks like docker is adding .html always to the end of the link (for local links). This should be easy to fix, maybe I have a look tomorrow. |
Agreed. That's exactly what it's doing. But I wouldn't call that "local". "relative", maybe? Either way, anchors should be preserved and not appended to. |
That sounds a lot like I did something stupid and forgot that anchor links were a thing. Definitely a bug, good spot! Should be a matter of replacing the bit that adds |
I'm coming from Docco so maybe my syntax is suspect...
I want to write
See [myFunction](somefile.js.html#myfunction)
but docker is adding ".html" to the
href
:See <a href="somefile.js.html#myfunction.html">myFunction</a>
Is this a bug? Is there a workaround (short of writing out the a element longhand)?
The text was updated successfully, but these errors were encountered: