Skip to content

Commit fc6f092

Browse files
committed
Auto merge of #39855 - steveklabnik:mdbook-reference, r=GuillaumeGomez
Port the reference to mdbook Part of #39588. This is only a work in progress. Still left to do: - [x] double check contents weren't duplicated/lost with the move to individual pages (I'm going to do this) - [x] fix up links [and footnotes](#39855 (comment)) (@frewsxcv has volunteered to help with this) - [x] change `src/doc/reference.md` to redirect to the book - [x] move the reference on the doc index to be part of the bookshelf
2 parents 0f34b53 + 55c02f6 commit fc6f092

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+5362
-4449
lines changed

src/bootstrap/doc.rs

-4
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,6 @@ pub fn standalone(build: &Build, target: &str) {
115115
.arg("-o").arg(&out)
116116
.arg(&path);
117117

118-
if filename == "reference.md" {
119-
cmd.arg("--html-in-header").arg(&full_toc);
120-
}
121-
122118
if filename == "not_found.md" {
123119
cmd.arg("--markdown-no-toc")
124120
.arg("--markdown-css")

src/bootstrap/step.rs

+9
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,15 @@ pub fn build_rules<'a>(build: &'a Build) -> Rules {
568568
})
569569
.default(build.config.docs)
570570
.run(move |s| doc::rustbook(build, s.target, "nomicon"));
571+
rules.doc("doc-reference", "src/doc/reference")
572+
.dep(move |s| {
573+
s.name("tool-rustbook")
574+
.host(&build.config.build)
575+
.target(&build.config.build)
576+
.stage(0)
577+
})
578+
.default(build.config.docs)
579+
.run(move |s| doc::rustbook(build, s.target, "reference"));
571580
rules.doc("doc-standalone", "src/doc")
572581
.dep(move |s| {
573582
s.name("rustc")

src/doc/book/src/attributes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ Rust attributes are used for a number of different things. There is a full list
6767
of attributes [in the reference][reference]. Currently, you are not allowed to
6868
create your own attributes, the Rust compiler defines them.
6969

70-
[reference]: ../reference.html#attributes
70+
[reference]: ../reference/attributes.html

src/doc/book/src/compiler-plugins.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ The advantages over a simple `fn(&str) -> u32` are:
119119
a way to define new literal syntax for any data type.
120120

121121
In addition to procedural macros, you can define new
122-
[`derive`](../reference.html#derive)-like attributes and other kinds of
122+
[`derive`](../reference/attributes.html#derive)-like attributes and other kinds of
123123
extensions. See `Registry::register_syntax_extension` and the `SyntaxExtension`
124124
enum. For a more involved macro example, see
125125
[`regex_macros`](https://github.com/rust-lang/regex/blob/master/regex_macros/src/lib.rs).
@@ -165,8 +165,8 @@ quasiquote as an ordinary plugin library.
165165
# Lint plugins
166166

167167
Plugins can extend [Rust's lint
168-
infrastructure](../reference.html#lint-check-attributes) with additional checks for
169-
code style, safety, etc. Now let's write a plugin
168+
infrastructure](../reference/attributes.html#lint-check-attributes) with
169+
additional checks for code style, safety, etc. Now let's write a plugin
170170
[`lint_plugin_test.rs`](https://github.com/rust-lang/rust/blob/master/src/test/run-pass-fulldeps/auxiliary/lint_plugin_test.rs)
171171
that warns about any item named `lintme`.
172172

@@ -244,9 +244,10 @@ mostly use the same infrastructure as lint plugins, and provide examples of how
244244
to access type information.
245245

246246
Lints defined by plugins are controlled by the usual [attributes and compiler
247-
flags](../reference.html#lint-check-attributes), e.g. `#[allow(test_lint)]` or
248-
`-A test-lint`. These identifiers are derived from the first argument to
249-
`declare_lint!`, with appropriate case and punctuation conversion.
247+
flags](../reference/attributes.html#lint-check-attributes), e.g.
248+
`#[allow(test_lint)]` or `-A test-lint`. These identifiers are derived from the
249+
first argument to `declare_lint!`, with appropriate case and punctuation
250+
conversion.
250251

251252
You can run `rustc -W help foo.rs` to see a list of lints known to `rustc`,
252253
including those provided by plugins loaded by `foo.rs`.

src/doc/book/src/macros.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ trees, at compile time. The semicolon is optional on the last (here, only)
101101
case. The "pattern" on the left-hand side of `=>` is known as a ‘matcher’.
102102
These have [their own little grammar] within the language.
103103

104-
[their own little grammar]: ../reference.html#macros
104+
[their own little grammar]: ../reference/macros.html
105105

106106
The matcher `$x:expr` will match any Rust expression, binding that syntax tree
107107
to the ‘metavariable’ `$x`. The identifier `expr` is a ‘fragment specifier’;
@@ -363,7 +363,7 @@ fn main() {
363363
}
364364
```
365365

366-
[items]: ../reference.html#items
366+
[items]: ../reference/items.html
367367

368368
# Recursive macros
369369

@@ -490,7 +490,7 @@ be forced to choose between parsing `$i` and parsing `$e`. Changing the
490490
invocation syntax to put a distinctive token in front can solve the problem. In
491491
this case, you can write `$(I $i:ident)* E $e:expr`.
492492

493-
[item]: ../reference.html#items
493+
[item]: ../reference/items.html
494494

495495
# Scoping and macro import/export
496496

@@ -565,7 +565,7 @@ When this library is loaded with `#[macro_use] extern crate`, only `m2` will
565565
be imported.
566566

567567
The Rust Reference has a [listing of macro-related
568-
attributes](../reference.html#macro-related-attributes).
568+
attributes](../reference/attributes.html#macro-related-attributes).
569569

570570
# The variable `$crate`
571571

src/doc/book/src/syntax-index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -235,10 +235,10 @@
235235
[Primitive Types (Tuple Indexing)]: primitive-types.html#tuple-indexing
236236
[Primitive Types (Tuples)]: primitive-types.html#tuples
237237
[Raw Pointers]: raw-pointers.html
238-
[Reference (Byte String Literals)]: ../reference.html#byte-string-literals
239-
[Reference (Integer literals)]: ../reference.html#integer-literals
240-
[Reference (Raw Byte String Literals)]: ../reference.html#raw-byte-string-literals
241-
[Reference (Raw String Literals)]: ../reference.html#raw-string-literals
238+
[Reference (Byte String Literals)]: ../reference/tokens.html/#byte-string-literals
239+
[Reference (Integer literals)]: ../reference/tokens.html#integer-literals
240+
[Reference (Raw Byte String Literals)]: ../reference/tokens.html#raw-byte-string-literals
241+
[Reference (Raw String Literals)]: ../reference/tokens.html#raw-string-literals
242242
[References and Borrowing]: references-and-borrowing.html
243243
[Strings]: strings.html
244244
[Structs (Update syntax)]: structs.html#update-syntax

src/doc/grammar.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ literal : [ string_lit | char_lit | byte_string_lit | byte_lit | num_lit | bool_
187187
The optional `lit_suffix` production is only used for certain numeric literals,
188188
but is reserved for future extension. That is, the above gives the lexical
189189
grammar, but a Rust parser will reject everything but the 12 special cases
190-
mentioned in [Number literals](reference.html#number-literals) in the
190+
mentioned in [Number literals](reference/tokens.html#number-literals) in the
191191
reference.
192192

193193
#### Character and string literals

src/doc/index.md

+7-9
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,6 @@ builds documentation for individual Rust packages.
1616
Rust provides a standard library with a number of features; [we host its
1717
documentation here][api].
1818

19-
## Reference Documentation
20-
21-
Rust does not yet have a formal specification, but we have [a reference document
22-
][ref]. It is guaranteed to be accurate, but not complete. We now have a
23-
policy that all new features must be included in the reference before
24-
stabilization; however, we are still back-filling things that landed before
25-
then. That work is being tracked [here][38643].
26-
2719
## Extended Error Documentation
2820

2921
Many of Rust's errors come with error codes, and you can request extended
@@ -37,11 +29,17 @@ nicknamed 'The Rust Bookshelf.'
3729

3830
* [The Rust Programming Language][book] teaches you how to program in Rust.
3931
* [The Rustonomicon][nomicon] is your guidebook to the dark arts of unsafe Rust.
32+
* [The Reference][ref] is not a formal spec, but is more detailed and comprehensive than the book.
33+
34+
Another few words about the reference: it is guaranteed to be accurate, but not
35+
complete. We now have a policy that all new features must be included in the
36+
reference before stabilization; however, we are still back-filling things that
37+
landed before then. That work is being tracked [here][38643].
4038

4139
[Rust Learning]: https://github.com/ctjhoa/rust-learning
4240
[Docs.rs]: https://docs.rs/
4341
[api]: std/index.html
44-
[ref]: reference.html
42+
[ref]: reference/index.html
4543
[38643]: https://github.com/rust-lang/rust/issues/38643
4644
[err]: error-index.html
4745
[book]: book/index.html

0 commit comments

Comments
 (0)