rust/src/doc
Steve Klabnik d0e1b06fc0 Clean up some wording around globs.
Globs used to be a feature you'd turn on, but now they're not, so this sounds
a bit odd.
2015-07-17 13:15:06 -04:00
..
style Fix grammar in style guide on traits 2015-06-23 15:54:16 -07:00
trpl Clean up some wording around globs. 2015-07-17 13:15:06 -04:00
complement-design-faq.md Update complement-design-faq.md 2015-06-30 17:02:10 -03:00
complement-lang-faq.md Add Terminal.com to the list of companies using rust in production. 2015-06-11 16:07:34 -07:00
complement-project-faq.md
favicon.inc
footer.inc Convert playpen.js to plain JS. 2015-06-12 16:26:07 -04:00
full-toc.inc
grammar.md Fix up macro grammar 2015-06-09 15:26:51 -04:00
guide-crates.md
guide-error-handling.md
guide-ffi.md
guide-macros.md
guide-ownership.md
guide-plugins.md
guide-pointers.md Change removal notice for pointer guide. 2015-06-29 15:18:00 -04:00
guide-strings.md
guide-tasks.md
guide-testing.md
guide-unsafe.md
guide.md
index.md doc: Make it easier to find the std docs from the index 2015-06-20 19:09:56 -07:00
intro.md
not_found.md
README.md
reference.md Merge branch 'more-ref-fixes' of https://github.com/tshepang/rust into rollup_central 2015-07-16 17:55:07 -04:00
rust.css
rust.md
rustdoc.md
tutorial.md
uptack.tex
version_info.html.template

Rust documentations

Dependencies

Pandoc, a universal document converter, is required to generate docs as HTML from Rust's source code.

Building

To generate all the docs, just run make docs from the root of the repository. This will convert the distributed Markdown docs to HTML and generate HTML doc for the '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:

pandoc --from=markdown --to=html5 --number-sections -o reference.html reference.md

(reference.md being the Rust Reference Manual.)

The syntax for pandoc flavored markdown can be found at:

A nice quick reference (for non-pandoc markdown) is at: