-
Notifications
You must be signed in to change notification settings - Fork 57
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
feature request: convert [Foo
] to a link to the docs
#70
Comments
Foo
] to a link to the docs[
Foo]
`` to a link to the docs
[
Foo]
`` to a link to the docsFoo
] to a link to the docs
Making them an actual link would be fabulous. I would also be happy with just stripping the surrounding |
Looks like duplicate of #55 |
You can do it with this command: sed -i 's/\[\(`[^`]*`\)]/\1/g' README.md To do it more quickly, you can use this tiny .PHONY: readme
readme: README.md
README.md: src/lib.rs
@ cargo readme > README.md
@ sed -i 's/\[\(`[^`]*`\)]/\1/g' README.md Just in case you don't know |
I link to doc entries to document the entrypoints of my crate with
[`Foo`]
, and rustdoc transforms them to links. It would be awesome if these were transformed to links to docs.rs.The text was updated successfully, but these errors were encountered: