]> git.lizzy.rs Git - rust.git/blob - src/doc/rustdoc.md
auto merge of #14374 : swgillespie/rust/swgillespie-tutorial, r=alexcrichton
[rust.git] / src / doc / rustdoc.md
1 % Rust Documentation
2
3 `rustdoc` is the built-in tool for generating documentation. It integrates
4 with the compiler to provide accurate hyperlinking between usage of types and
5 their documentation. Furthermore, by not using a separate parser, it will
6 never reject your valid Rust code.
7
8 # Creating Documentation
9
10 Documenting Rust APIs is quite simple. To document a given item, we have "doc
11 comments":
12
13 ~~~
14 # #![allow(unused_attribute)]
15 // the "link" crate attribute is currently required for rustdoc, but normally
16 // isn't needed.
17 #![crate_id = "universe"]
18 #![crate_type="lib"]
19
20 //! Tools for dealing with universes (this is a doc comment, and is shown on
21 //! the crate index page. The ! makes it apply to the parent of the comment,
22 //! rather than what follows).
23
24 # mod workaround_the_outer_function_rustdoc_inserts {
25 /// Widgets are very common (this is a doc comment, and will show up on
26 /// Widget's documentation).
27 pub struct Widget {
28         /// All widgets have a purpose (this is a doc comment, and will show up
29         /// the field's documentation).
30         purpose: String,
31         /// Humans are not allowed to understand some widgets
32         understandable: bool
33 }
34
35 pub fn recalibrate() {
36         //! Recalibrate a pesky universe (this is also a doc comment, like above,
37         //! the documentation will be applied to the *parent* item, so
38         //! `recalibrate`).
39         /* ... */
40 }
41 # }
42 ~~~
43
44 Documentation can also be controlled via the `doc` attribute on items. This is
45 implicitly done by the compiler when using the above form of doc comments
46 (converting the slash-based comments to `#[doc]` attributes).
47
48 ~~~
49 #[doc = "
50 Calculates the factorial of a number.
51
52 Given the input integer `n`, this function will calculate `n!` and return it.
53 "]
54 pub fn factorial(n: int) -> int { if n < 2 {1} else {n * factorial(n)} }
55 # fn main() {}
56 ~~~
57
58 The `doc` attribute can also be used to control how rustdoc emits documentation
59 in some cases.
60
61 ```
62 // Rustdoc will inline documentation of a `pub use` into this crate when the
63 // `pub use` reaches across crates, but this behavior can also be disabled.
64 #[doc(no_inline)]
65 pub use std::option::Option;
66 # fn main() {}
67 ```
68
69 Doc comments are markdown, and are currently parsed with the
70 [sundown][sundown] library. rustdoc does not yet do any fanciness such as
71 referencing other items inline, like javadoc's `@see`. One exception to this
72 is that the first paragraph will be used as the "summary" of an item in the
73 generated documentation:
74
75 ~~~
76 /// A whizbang. Does stuff. (this line is the summary)
77 ///
78 /// Whizbangs are ...
79 struct Whizbang;
80 ~~~
81
82 To generate the docs, run `rustdoc universe.rs`. By default, it generates a
83 directory called `doc`, with the documentation for `universe` being in
84 `doc/universe/index.html`. If you are using other crates with `extern crate`,
85 rustdoc will even link to them when you use their types, as long as their
86 documentation has already been generated by a previous run of rustdoc, or the
87 crate advertises that its documentation is hosted at a given URL.
88
89 The generated output can be controlled with the `doc` crate attribute, which
90 is how the above advertisement works. An example from the `libstd`
91 documentation:
92
93 ~~~
94 #[doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
95       html_favicon_url = "http://www.rust-lang.org/favicon.ico",
96       html_root_url = "http://doc.rust-lang.org/")];
97 ~~~
98
99 The `html_root_url` is the prefix that rustdoc will apply to any references to
100 that crate's types etc.
101
102 rustdoc can also generate JSON, for consumption by other tools, with
103 `rustdoc --output-format json`, and also consume already-generated JSON with
104 `rustdoc --input-format json`.
105
106 # Using the Documentation
107
108 The web pages generated by rustdoc present the same logical hierarchy that one
109 writes a library with. Every kind of item (function, struct, etc) has its own
110 color, and one can always click on a colored type to jump to its
111 documentation. There is a search bar at the top, which is powered by some
112 JavaScript and a statically-generated search index. No special web server is
113 required for the search.
114
115 [sundown]: https://github.com/vmg/sundown/
116
117 # Testing the Documentation
118
119 `rustdoc` has support for testing code examples which appear in the
120 documentation. This is helpful for keeping code examples up to date with the
121 source code.
122
123 To test documentation, the `--test` argument is passed to rustdoc:
124
125 ~~~ {.notrust}
126 rustdoc --test crate.rs
127 ~~~
128
129 ## Defining tests
130
131 Rust documentation currently uses the markdown format, and rustdoc treats all
132 code blocks as testable-by-default. In order to not run a test over a block of
133 code, the `ignore` string can be added to the three-backtick form of markdown
134 code block.
135
136 ~~~notrust
137 ```
138 // This is a testable code block
139 ```
140
141 ```ignore
142 // This is not a testable code block
143 ```
144
145     // This is a testable code block (4-space indent)
146 ~~~
147
148 You can specify that the test's execution should fail with the `should_fail`
149 directive.
150
151 ~~~notrust
152 ```should_fail
153 // This code block is expected to generate a failure when run
154 ```
155 ~~~
156
157 You can specify that the code block should be compiled but not run with the
158 `no_run` directive.
159
160 ~~~notrust
161 ```no_run
162 // This code will be compiled but not executed
163 ```
164 ~~~
165
166 Rustdoc also supplies some extra sugar for helping with some tedious
167 documentation examples. If a line is prefixed with `# `, then the line
168 will not show up in the HTML documentation, but it will be used when
169 testing the code block (NB. the space after the `#` is required, so
170 that one can still write things like `#[deriving(Eq)]`).
171
172 ~~~notrust
173 ```
174 # /!\ The three following lines are comments, which are usually stripped off by
175 # the doc-generating tool.  In order to display them anyway in this particular
176 # case, the character following the leading '#' is not a usual space like in
177 # these first five lines but a non breakable one.
178 # // showing 'fib' in this documentation would just be tedious and detracts from
179 # // what's actually being documented.
180 # fn fib(n: int) { n + 2 }
181
182 spawn(proc() { fib(200); })
183 ```
184 ~~~
185
186 The documentation online would look like `spawn(proc() { fib(200); })`, but when
187 testing this code, the `fib` function will be included (so it can compile).
188
189 ## Running tests (advanced)
190
191 Running tests often requires some special configuration to filter tests, find
192 libraries, or try running ignored examples. The testing framework that rustdoc
193 uses is build on crate `test`, which is also used when you compile crates with
194 rustc's `--test` flag. Extra arguments can be passed to rustdoc's test harness
195 with the `--test-args` flag.
196
197 ~~~ {.notrust}
198 # Only run tests containing 'foo' in their name
199 $ rustdoc --test lib.rs --test-args 'foo'
200
201 # See what's possible when running tests
202 $ rustdoc --test lib.rs --test-args '--help'
203 ~~~
204
205 When testing a library, code examples will often show how functions are used,
206 and this code often requires `use`-ing paths from the crate. To accommodate this,
207 rustdoc will implicitly add `extern crate <crate>;` where `<crate>` is the name of
208 the crate being tested to the top of each code example. This means that rustdoc
209 must be able to find a compiled version of the library crate being tested. Extra
210 search paths may be added via the `-L` flag to `rustdoc`.
211
212 # Standalone Markdown files
213
214 As well as Rust crates, rustdoc supports rendering pure Markdown files
215 into HTML and testing the code snippets from them. A Markdown file is
216 detected by a `.md` or `.markdown` extension.
217
218 There are 4 options to modify the output that Rustdoc creates.
219
220 - `--markdown-css PATH`: adds a `<link rel="stylesheet">` tag pointing to `PATH`.
221 - `--markdown-in-header FILE`: includes the contents of `FILE` at the
222   end of the `<head>...</head>` section.
223 - `--markdown-before-content FILE`: includes the contents of `FILE`
224   directly after `<body>`, before the rendered content (including the
225   title).
226 - `--markdown-after-content FILE`: includes the contents of `FILE`
227   directly before `</body>`, after all the rendered content.
228
229 All of these can be specified multiple times, and they are output in
230 the order in which they are specified. The first line of the file must
231 be the title, prefixed with `%` (e.g. this page has `% Rust
232 Documentation` on the first line).
233
234 Like with a Rust crate, the `--test` argument will run the code
235 examples to check they compile, and obeys any `--test-args` flags. The
236 tests are named after the last `#` heading.