@@ -311,7 +311,7 @@ Markdown file, the URL given to `--markdown-playground-url` will take precedence
311
311
` --playground-url ` and ` #![doc(html_playground_url = "url")] ` are present when rendering crate docs,
312
312
the attribute will take precedence.
313
313
314
- ### ` --sort-modules-by-appearance ` : control how items on module pages are sorted
314
+ ## ` --sort-modules-by-appearance ` : control how items on module pages are sorted
315
315
316
316
Using this flag looks like this:
317
317
@@ -324,7 +324,7 @@ some consideration for their stability, and names that end in a number). Giving
324
324
` rustdoc ` will disable this sorting and instead make it print the items in the order they appear in
325
325
the source.
326
326
327
- ### ` --show-type-layout ` : add a section to each type's docs describing its memory layout
327
+ ## ` --show-type-layout ` : add a section to each type's docs describing its memory layout
328
328
329
329
* Tracking issue: [ #113248 ] ( https://github.com/rust-lang/rust/issues/113248 )
330
330
@@ -342,7 +342,7 @@ of that type will take in memory.
342
342
Note that most layout information is ** completely unstable** and may even differ
343
343
between compilations.
344
344
345
- ### ` --resource-suffix ` : modifying the name of CSS/JavaScript in crate docs
345
+ ## ` --resource-suffix ` : modifying the name of CSS/JavaScript in crate docs
346
346
347
347
* Tracking issue: [ #54765 ] ( https://github.com/rust-lang/rust/issues/54765 )
348
348
@@ -357,7 +357,7 @@ all these files are linked from every page, changing where they are can be cumbe
357
357
specially cache them. This flag will rename all these files in the output to include the suffix in
358
358
the filename. For example, ` light.css ` would become ` light-suf.css ` with the above command.
359
359
360
- ### ` --extern-html-root-url ` : control how rustdoc links to non-local crates
360
+ ## ` --extern-html-root-url ` : control how rustdoc links to non-local crates
361
361
362
362
Using this flag looks like this:
363
363
@@ -372,7 +372,7 @@ flags to control that behavior. When the `--extern-html-root-url` flag is given
372
372
one of your dependencies, rustdoc use that URL for those docs. Keep in mind that if those docs exist
373
373
in the output directory, those local docs will still override this flag.
374
374
375
- ### ` -Z force-unstable-if-unmarked `
375
+ ## ` -Z force-unstable-if-unmarked `
376
376
377
377
Using this flag looks like this:
378
378
@@ -385,7 +385,7 @@ This is an internal flag intended for the standard library and compiler that app
385
385
allows ` rustdoc ` to be able to generate documentation for the compiler crates and the standard
386
386
library, as an equivalent command-line argument is provided to ` rustc ` when building those crates.
387
387
388
- ### ` --index-page ` : provide a top-level landing page for docs
388
+ ## ` --index-page ` : provide a top-level landing page for docs
389
389
390
390
This feature allows you to generate an index-page with a given markdown file. A good example of it
391
391
is the [ rust documentation index] ( https://doc.rust-lang.org/nightly/index.html ) .
@@ -394,18 +394,18 @@ With this, you'll have a page which you can customize as much as you want at the
394
394
395
395
Using ` index-page ` option enables ` enable-index-page ` option as well.
396
396
397
- ### ` --enable-index-page ` : generate a default index page for docs
397
+ ## ` --enable-index-page ` : generate a default index page for docs
398
398
399
399
This feature allows the generation of a default index-page which lists the generated crates.
400
400
401
- ### ` --nocapture ` : disable output capture for test
401
+ ## ` --nocapture ` : disable output capture for test
402
402
403
403
When this flag is used with ` --test ` , the output (stdout and stderr) of your tests won't be
404
404
captured by rustdoc. Instead, the output will be directed to your terminal,
405
405
as if you had run the test executable manually. This is especially useful
406
406
for debugging your tests!
407
407
408
- ### ` --check ` : only checks the documentation
408
+ ## ` --check ` : only checks the documentation
409
409
410
410
When this flag is supplied, rustdoc will type check and lint your code, but will not generate any
411
411
documentation or run your doctests.
@@ -416,7 +416,7 @@ Using this flag looks like:
416
416
rustdoc -Z unstable-options --check src/lib.rs
417
417
```
418
418
419
- ### ` --static-root-path ` : control how static files are loaded in HTML output
419
+ ## ` --static-root-path ` : control how static files are loaded in HTML output
420
420
421
421
Using this flag looks like this:
422
422
@@ -431,7 +431,7 @@ JavaScript, and font files in a single location, rather than duplicating it once
431
431
files like the search index will still load from the documentation root, but anything that gets
432
432
renamed with ` --resource-suffix ` will load from the given path.
433
433
434
- ### ` --persist-doctests ` : persist doctest executables after running
434
+ ## ` --persist-doctests ` : persist doctest executables after running
435
435
436
436
* Tracking issue: [ #56925 ] ( https://github.com/rust-lang/rust/issues/56925 )
437
437
@@ -445,7 +445,7 @@ This flag allows you to keep doctest executables around after they're compiled o
445
445
Usually, rustdoc will immediately discard a compiled doctest after it's been tested, but
446
446
with this option, you can keep those binaries around for farther testing.
447
447
448
- ### ` --show-coverage ` : calculate the percentage of items with documentation
448
+ ## ` --show-coverage ` : calculate the percentage of items with documentation
449
449
450
450
* Tracking issue: [ #58154 ] ( https://github.com/rust-lang/rust/issues/58154 )
451
451
@@ -496,7 +496,7 @@ Calculating code examples follows these rules:
496
496
* typedef
497
497
2 . If one of the previously listed items has a code example, then it'll be counted.
498
498
499
- #### JSON output
499
+ ### JSON output
500
500
501
501
When using ` --output-format json ` with this option, it will display the coverage information in
502
502
JSON format. For example, here is the JSON for a file with one documented item and one
@@ -518,7 +518,7 @@ Note that the third item is the crate root, which in this case is undocumented.
518
518
If you want the JSON output to be displayed on ` stdout ` instead of having a file generated, you can
519
519
use ` -o - ` .
520
520
521
- ### ` -w ` /` --output-format ` : output format
521
+ ## ` -w ` /` --output-format ` : output format
522
522
523
523
` --output-format json ` emits documentation in the experimental
524
524
[ JSON format] ( https://doc.rust-lang.org/nightly/nightly-rustc/rustdoc_json_types/ ) . ` --output-format html ` has no effect,
@@ -538,7 +538,7 @@ It can also be used with `--show-coverage`. Take a look at its
538
538
[ documentation] ( #--show-coverage-calculate-the-percentage-of-items-with-documentation ) for more
539
539
information.
540
540
541
- ### ` --enable-per-target-ignores ` : allow ` ignore-foo ` style filters for doctests
541
+ ## ` --enable-per-target-ignores ` : allow ` ignore-foo ` style filters for doctests
542
542
543
543
* Tracking issue: [ #64245 ] ( https://github.com/rust-lang/rust/issues/64245 )
544
544
@@ -573,7 +573,7 @@ struct Foo;
573
573
In older versions, this will be ignored on all targets, but on newer versions ` ignore-gnu ` will
574
574
override ` ignore ` .
575
575
576
- ### ` --runtool ` , ` --runtool-arg ` : program to run tests with; args to pass to it
576
+ ## ` --runtool ` , ` --runtool-arg ` : program to run tests with; args to pass to it
577
577
578
578
* Tracking issue: [ #64245 ] ( https://github.com/rust-lang/rust/issues/64245 )
579
579
@@ -592,7 +592,7 @@ $ rustdoc src/lib.rs -Z unstable-options --runtool valgrind
592
592
593
593
Another use case would be to run a test inside an emulator, or through a Virtual Machine.
594
594
595
- ### ` --with-examples ` : include examples of uses of items as documentation
595
+ ## ` --with-examples ` : include examples of uses of items as documentation
596
596
597
597
* Tracking issue: [ #88791 ] ( https://github.com/rust-lang/rust/issues/88791 )
598
598
@@ -621,9 +621,67 @@ crate being documented (`foobar`) and a path to output the calls
621
621
To scrape examples from test code, e.g. functions marked ` #[test] ` , then
622
622
add the ` --scrape-tests ` flag.
623
623
624
- ### ` --generate-link-to-definition ` : Generate links on types in source code
624
+ ## ` --generate-link-to-definition ` : Generate links on types in source code
625
625
626
626
* Tracking issue: [ #89095 ] ( https://github.com/rust-lang/rust/issues/89095 )
627
627
628
628
This flag enables the generation of links in the source code pages which allow the reader
629
629
to jump to a type definition.
630
+
631
+ ## Passing arguments to rustc when compiling doctests
632
+
633
+ You can use the ` --doctest-compilation-args ` option if you want to add options when compiling the
634
+ doctest. For example if you have:
635
+
636
+ ``` rust,no_run
637
+ /// ```
638
+ /// #![deny(warnings)]
639
+ /// #![feature(async_await)]
640
+ ///
641
+ /// let x = 12;
642
+ /// ```
643
+ pub struct Bar;
644
+ ```
645
+
646
+ And you run ` rustdoc --test ` on it, you will get:
647
+
648
+ ``` console
649
+ running 1 test
650
+ test foo.rs - Bar (line 1) ... FAILED
651
+
652
+ failures:
653
+
654
+ ---- foo.rs - Bar (line 1) stdout ----
655
+ error: the feature `async_await` has been stable since 1.39.0 and no longer requires an attribute to enable
656
+ --> foo.rs:2:12
657
+ |
658
+ 3 | #![feature(async_await)]
659
+ | ^^^^^^^^^^^
660
+ |
661
+ note: the lint level is defined here
662
+ --> foo.rs:1:9
663
+ |
664
+ 2 | #![deny(warnings)]
665
+ | ^^^^^^^^
666
+ = note: `#[deny(stable_features)]` implied by `#[deny(warnings)]`
667
+
668
+ error: aborting due to 1 previous error
669
+
670
+ Couldn't compile the test.
671
+
672
+ failures:
673
+ foo.rs - Bar (line 1)
674
+
675
+ test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.03s
676
+ ```
677
+
678
+ But if you can limit the lint level to warning by using ` --doctest_compilation_args=--cap-lints=warn ` :
679
+
680
+ ``` console
681
+ $ rustdoc --test --doctest_compilation_args=--cap-lints=warn file.rs
682
+
683
+ running 1 test
684
+ test tests/rustdoc-ui/doctest/rustflags.rs - Bar (line 5) ... ok
685
+
686
+ test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.06s
687
+ ```
0 commit comments