cargo-intraconv
is a simple helper which will transform Markdown links to
[intra-doc links] in Rust projects when appropriate.
Intra-doc links have been stabilized in Rust 1.48.0, see the [blog post] annoucing it for more information.
Previously the only way to write links to other elements of your crate (or other crates) was the following, the path depending on the current and target files:
``rust
/// [
makeasciiuppercase`]: #method.makeasciiuppercase
/// [Path::ancestors
]: https://doc.rust-lang.org/stable/std/path/struct.Path.html#method.ancestors
/// See the Rotation
type
```
It is now possible to write them with Rust paths, depending on the path of the
targeted item and what's in scope (which means items like String
which are in
the prelude are just a [String]
away). Those links are clearer for both
the person writing them in the first place and subsequent readers reviewing them.
They are also easier to reason about since file hierachy does not affect them.
Below is the intra-doc links version of the examples above:
``rust
/// [
makeasciiuppercase`]: u8::makeasciiuppercase()
/// [Path::ancestors
]: std::path::Path::ancestors()
/// See the Rotation
type
```
When both side of the link are the same, it is possible to be even shorter:
``diff
/// See [
Rotation]
///
- /// [
Rotation`]: struct.Rotation.html
Rotation
Rotation
]
```Changing all the existing links can be tedious and can be automated. This crate is here to help you update your documentation to intra-doc links as painlessly as possible.
By default the binary produced by the crate will not modify the given files, only show what would change:
```shell
cargo-intraconv
for a whole crate or workspace. Crate names will beCargo.toml
files.cargo intraconv
cargo-intraconv
for specific file. No automatic crate name discovery.cargo intraconv path/to/std/file.rs
cargo intraconv path/to/core/file.rs -c core
cargo intraconv path/to/std/file.rs -a
cargo intraconv path/to/my/file.rs -d
cargo intravonc path/to/my/file.rs -f
cargo intraconv path/to/my/file.rs -q
#
intraconv.toml
is read by default when present.cargo intraconv path/to/my/file.rs -i intraconv.toml ```
It is possible to give multiple paths to files or directories. When searching
exact paths, cargo-intraconv
will use the crate name given with -c
. For
directories it will try to find the crate name in a Cargo.toml
, falling back
to the default of -c
if the name cannot be transformed to a valid Rust
identifier.
Note:
intraconv
will accept any file, no just.rs
ones: you can use it on markdown files that are included as docs in Rust files for example.
By default the crate will transform favored http(s)://
links to intra-doc
links (like those from docs.rs
). To disable this behaviour
use the -f
(--no-favored
) flag.
cargo-intraconv
is not perfect and will sometimes wrongly transform links,
as in [#31]. To fix that you can either do it manually if you run it only once
but if you start to run it several times because the changes are significative
it will quickly become repetitive and error-prone. For a tool designed to
reduce repetitive and error prone work, this is a sad thing !
When the --ignore-file
(-i
) is not passed, cargo-intraconv
will read
ìntraconv.toml
by default (though it will not produce an error nor warning
if it's missing since it's a default check).
To fix this, you can write a file in the TOML format with links to ignore:
```toml
[ignore]
"name"
."name" = [ "link 1" ] # Must be an array, a single value will not work, # this allows for multiples values easily. "name" = [ "link 2" ]
"other name" = [ "link 3", "link 3", "link 1" ]
cargo-intraconv
is called.#
lib.rs
below).["tracing-core/src/lib.rs"]
downcast_ref
' links."downcastref" = [ "#method.downcastref" ] # Must be an array.
["lib.rs"] "downcastref" = [ "#method.downcastref" ] ```
Using backticks (`
) around the link names is not supported: this will
never match any links:
````toml [ignore]
"downcast_ref
" = [ "#method.downcast_ref" ]
````
Both intra-doc links and this crate have several known issues, most of which should be adressed in future versions of either the crate or Rust itself.
For issues about intra-doc links you should look-up [the issues at rust-lang/rust
].
For issues about this crate, here is one:
#method.method_name
links will sometimes be transformed to point to the
wrong item. This is because intraconv
uses regexes to find links and the
types related to them, which is not perfect.It is not an official tool and the way it works right now is based on regexes.
This approach means it is simple to understand but it has several drawbacks.
For example cargo-intraconv
is not aware of use
s and will happily ignore them,
even when they could shorten or remove links.
cargo-deadlinks
is another
tool for documentation and links. It works very well in conjunction with
cargo-intraconv
!
Any form of contribution is appreciated ! You can open issues or PR and I'll try to answer you quickly !
See LICENSE
at the repository's root.