Manish Goregaokar 90686df18c Rollup merge of #22960 - huonw:static-assert, r=huonw
The API this exposes is a little strange (being attached to `static`s),
so it makes sense to conservatively feature gate it. If it is highly
popular, it is possible to reverse this gating.
2015-03-03 17:01:15 +05:30
..
2015-02-17 12:30:07 -05:00
2015-01-14 16:13:58 -08:00
2015-01-07 09:23:31 -05:00
2015-02-16 03:56:52 +05:30
2015-02-24 23:26:25 +01:00
2015-01-12 13:16:07 -05:00
2014-12-17 21:00:04 -05:00
2015-03-03 13:00:10 +11:00
2015-01-21 14:59:25 -05:00
2015-01-13 21:11:47 -05:00
2014-12-19 18:09:33 -05:00

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: