rust/src/doc
Manish Goregaokar b1dc2c5094 Rollup merge of #27519 - JanLikar:rearrange-patterns, r=steveklabnik
- Move "Destructuring" after "Multiple patterns", because some of
    later sections include examples which make use of destructuring.

  - Move "Ignoring bindings" after "Destructoring", because the former
    features Result<T,E> destructuring. Some of examples in later
    sections use "_" and "..", so "Ignoring bindings" must be
    positioned before them.

  - Fix #27347 by moving "Ref and mut ref" before "Ranges" and
    "Bindings", because "Bindings" section includes a somewhat
    difficult example, which also makes use of "ref" and "mut ref"
    operators.
2015-08-05 13:45:38 +05:30
..
nomicon rename TARPL to The Rustinomicon 2015-08-03 11:22:08 -07:00
style Fix grammar in style guide on traits 2015-06-23 15:54:16 -07:00
trpl Rollup merge of #27519 - JanLikar:rearrange-patterns, r=steveklabnik 2015-08-05 13:45:38 +05:30
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 Remove the 30 minute intro 2015-04-18 17:55:31 -04:00
not_found.md Fix section headers on Not Found page 2015-05-27 19:15:17 -04:00
README.md
reference.md reference: follow idiom in this tiny snippet 2015-08-03 16:07:36 +02:00
rust.css Move wrapper types blog post into trpl 2015-07-25 11:02:41 +05:30
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: