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
Consider the follow minimal README.md:
README.md
[foo](foo.md) [bar]{bar.md#awesome)
pkgdown::build_site() will convert it to
pkgdown::build_site()
<a href="foo.html">foo</a> <a href="bar.md#awesome">bar</a>
instead of
<a href="foo.html">foo</a> <a href="bar.html#awesome">bar</a>
This happen because in
pkgdown/R/tweak-tags.R
Line 46 in 39083f3
.md
Can we support links that include an anchor? Thanks!
The text was updated successfully, but these errors were encountered:
Avoid anchor in link
aa73f3d
Relates to r-lib/pkgdown#2313
Also tweak urls with fragment
b510631
Fixes #2313
Also tweak urls with fragment (#2469)
9d22b8c
Also tweak urls with fragment (r-lib#2469)
15ed800
Fixes r-lib#2313
Successfully merging a pull request may close this issue.
Consider the follow minimal
README.md
:pkgdown::build_site()
will convert it toinstead of
This happen because in
pkgdown/R/tweak-tags.R
Line 46 in 39083f3
.md
.Can we support links that include an anchor? Thanks!
The text was updated successfully, but these errors were encountered: