File tree Expand file tree Collapse file tree 2 files changed +15
-13
lines changed Expand file tree Collapse file tree 2 files changed +15
-13
lines changed Original file line number Diff line number Diff line change 11# Version 1.4.0 - 2020-12-02
22
3- - Read ` intraconv.toml ` by default when no ignore file is given (#36 ).
4- - Correctly detect ignored links for long links (#38 ).
5- - Ignore ` primitive.Type.html ` links since transforming them is wrong most of
6- the time (#35 ).
3+ - Feature: Read ` intraconv.toml ` by default when no ignore file is given (#36 ).
4+ - Fix: Ignore ` primitive.Type.html ` links since transforming them is wrong most
5+ of the time (#35 ).
6+ - Fix: Properly handle directories when they are given explicitely in a
7+ workspace (no issue).
8+ - Fix: Correctly detect ignored links for long links (#38 ).
79- Fix: use ` --ignore-file ` instead of ` ----ignore-file ` (#37 ).
810
911# Version 1.3.0 - 2020-11-25
3739
3840## Internals
3941
40- The internals of the crate have been extensively rewritten. They now use a
42+ The internals of the crate have been extensively rewritten. They now use a
4143cleaner link parser that is more safe and more extensible.
4244
4345This was made necessary by #21 , which asked for the support of ` [name](link) ` .
Original file line number Diff line number Diff line change @@ -72,24 +72,24 @@ cargo intraconv
7272cargo intraconv path/to/std/file.rs
7373
7474# Specifying the root crate.
75- cargo intraconv path/to/core/file.rs -c core
75+ cargo intraconv path/to/core/file.rs -c core
7676
7777# Applying the changes.
78- cargo intraconv path/to/std/file.rs -a
78+ cargo intraconv path/to/std/file.rs -a
7979
8080# Disambiguate links by prefixing them with their rustdoc group ('type@', ...).
81- cargo intraconv path/to/my/file.rs -d
81+ cargo intraconv path/to/my/file.rs -d
8282
8383# Do not transform favored links to intra-doc links (see below for more).
84- cargo intravonc path/to/my/file.rs -f
85-
84+ cargo intravonc path/to/my/file.rs -f
85+
8686# Do not display changes, only errors.
87- cargo intraconv path/to/my/file.rs -q
87+ cargo intraconv path/to/my/file.rs -q
8888
8989# Give a file containing links to ignore.
90- #
90+ #
9191# Note: `intraconv.toml` is read by default when present.
92- cargo intraconv path/to/my/file.rs -i intraconv.toml
92+ cargo intraconv path/to/my/file.rs -i intraconv.toml
9393```
9494
9595It is possible to give multiple paths to files or directories. When searching
You can’t perform that action at this time.
0 commit comments