We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, it seems link fixes (fix .md to .html) are only applied to the rendered html. So, links in other formats such as LaTex are not fixed.
https://github.com/rust-lang/mdBook/blob/master/src/utils/mod.rs#L142-L161
Before Fix: $$ \href{./index.md}{link} $$
After Fix: $$ \href{./index.html}{link} $$
Applying link fixes for all formats seems too much, so we might be able to at least cover supported format in mdBook such as LaTex.
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem
Currently, it seems link fixes (fix .md to .html) are only applied to the rendered html. So, links in other formats such as LaTex are not fixed.
https://github.com/rust-lang/mdBook/blob/master/src/utils/mod.rs#L142-L161
Example (LaTex)
Before Fix:
$$
\href{./index.md}{link}
$$
After Fix:
$$
\href{./index.html}{link}
$$
Proposed Solution
Applying link fixes for all formats seems too much, so we might be able to at least cover supported format in mdBook such as LaTex.
Notes
No response
The text was updated successfully, but these errors were encountered: