rust/src/doc
kennytm 1439c2ac35
Rollup merge of #47947 - goodmanjonathan:stabilize_match_beginning_vert, r=petrochenkov
Stabilize feature(match_beginning_vert)

With this feature stabilized, match expressions can optionally have a `|` at the beginning of each arm.

Reference PR: rust-lang-nursery/reference#231

Closes #44101
2018-02-04 23:28:58 +08:00
..
book@194eb8d5f1 update books for next release 2017-12-30 12:02:53 -05:00
man template month/year, version into man pages while building dist tarball 2017-12-04 23:47:59 -08:00
nomicon@fec3182d0b Mark Unique as perma-unstable, with the feature renamed to ptr_internals. 2018-01-20 11:09:23 +01:00
reference@1d791b55b2 update books for next release 2017-12-30 12:02:53 -05:00
rust-by-example@4ebb8169df Adding RBE as a submodule #46194 2018-01-13 13:04:53 -08:00
rustdoc Reexport -> re-export in documentation section headings 2018-01-15 13:36:52 -05:00
unstable-book Rollup merge of #47947 - goodmanjonathan:stabilize_match_beginning_vert, r=petrochenkov 2018-02-04 23:28:58 +08:00
complement-design-faq.md
complement-lang-faq.md
complement-project-faq.md
favicon.inc
footer.inc
full-toc.inc
grammar.md Add _ to the list of keywords 2017-06-17 13:14:26 -07:00
guide-crates.md
guide-error-handling.md
guide-ffi.md
guide-macros.md
guide-ownership.md
guide-plugins.md
guide-pointers.md
guide-strings.md
guide-tasks.md
guide-testing.md
guide-unsafe.md
guide.md
index.md add Rust By Example to the bookshelf 2018-01-16 19:35:39 -06:00
intro.md
not_found.md fix markdown file differences 2017-12-07 23:56:21 +01:00
README.md fix for documentation error issue 47716 2018-01-24 09:25:46 -07:00
reference.md
rust.css Fix error index display 2018-01-09 22:26:26 +01:00
rust.md
rustc-ux-guidelines.md
rustdoc.md
tutorial.md
version_info.html.template

Rust documentations

Building

To generate all the docs, follow the "Building Documentation" instructions in the README in the root of the repository. This will convert the distributed Markdown docs to HTML and generate HTML doc for the books, 'std' and 'extra' libraries.

To generate HTML documentation from one source file/crate, do something like:

rustdoc --output html-doc/ --output-format html ../src/libstd/path.rs

(This, of course, requires a working build of the rustdoc tool.)

Additional notes

To generate an HTML version of a doc from Markdown manually, you can do something like:

rustdoc reference.md

(reference.md being the Rust Reference Manual.)

An overview of how to use the rustdoc command is available in the docs. Further details are available from the command line by with rustdoc --help.