rust/src/doc
2015-10-19 14:23:51 +09:00
..
nomicon Update explanation about offset method 2015-10-16 19:10:01 +03:00
style Remove outdated Changing directory. 2015-10-15 19:35:39 +00:00
trpl Change to avoid repeated "is" 2015-10-19 14:23:51 +09:00
complement-design-faq.md
complement-lang-faq.md Correct spelling in docs 2015-10-13 09:44:11 -04:00
complement-project-faq.md We are production ready 2015-09-20 15:53:47 -04:00
favicon.inc
footer.inc
full-toc.inc
grammar.md doc: fixing typos 2015-10-10 09:15:55 -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 link to the german trpl translation 2015-10-06 19:50:09 +02:00
intro.md
not_found.md
README.md Fix meta-documentation for generating all docs. 2015-09-26 12:05:47 -07:00
reference.md Rollup merge of #29058 - tshepang:rename, r=steveklabnik 2015-10-15 13:41:32 +05:30
rust.css
rust.md
rustdoc.md
tutorial.md
uptack.tex
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.