19 releases

Uses old Rust 2015

0.1.19 Apr 28, 2023
0.1.18 Jun 1, 2021
0.1.17 Jan 24, 2021
0.1.16 Sep 30, 2020
0.1.1 Mar 31, 2016

#479 in Rust patterns

Download history 176/week @ 2024-06-03 154/week @ 2024-06-10 247/week @ 2024-06-17 126/week @ 2024-06-24 124/week @ 2024-07-01 195/week @ 2024-07-08 111/week @ 2024-07-15 65/week @ 2024-07-22 230/week @ 2024-07-29 134/week @ 2024-08-05 135/week @ 2024-08-12 136/week @ 2024-08-19 199/week @ 2024-08-26 90/week @ 2024-09-02 152/week @ 2024-09-09 135/week @ 2024-09-16

608 downloads per month
Used in 8 crates (4 directly)

Apache-2.0

76KB
2K SLoC

rustdoc-stripper Build Status

rustdoc-stripper is a tool used to remove rustdoc comments from your code and save them in a comments.cmts file if you want to regenerate them.

Options

Available options for rustdoc-stripper are:

  • -h | --help : Displays this help
  • -s | --strip : Strips the current folder files and create a file with rustdoc information (comments.cmts by default)
  • -g | --regenerate : Recreate files with rustdoc comments from reading rustdoc information file (comments.cmts by default)
  • -n | --no-file-output : Display rustdoc information directly on stdout
  • -i | --ignore [filename]: Ignore the specified file, can be repeated as much as needed, only used when stripping files, ignored otherwise
  • -d | --dir [directory] : Specify a directory path to work on, optional
  • -v | --verbose : Activate verbose mode
  • -f | --force : Remove confirmation demands
  • -m | --ignore-macros : macros in hierarchy will be ignored (so only macros with doc comments will appear in the comments file)
  • -o | --comment-file : specify the file within you want to save rustdoc information

By default, rustdoc is run with -s option:

./rustdoc-stripper -s

IMPORTANT: Only files ending with '.rs' will be stripped/regenerated.

Ignore doc-comment

You can prevent a doc comment to be stripped by prepending it by // rustdoc-stripper-ignore-next.

You can mark the end of the block to ignore with // rustdoc-stripper-ignore-next-stop.

Example:

// rustdoc-stripper-ignore-next
/// existing comment
// rustdoc-stripper-ignore-next-stop
/// This part will be removed when running rustdoc-stripper!
pub unsafe fn new() -> Foo {}

No runtime deps