diff options
| author | bors <bors@rust-lang.org> | 2014-10-08 11:32:11 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-10-08 11:32:11 +0000 |
| commit | eb2240aca311075f4a4625c11956b582eefae9b7 (patch) | |
| tree | 69ec9927545d8de155247533bca93e6eda1fcbbe | |
| parent | bc649ba8f803913a23c767d57be01c693cd03d8a (diff) | |
| parent | 3610f8fdc2ae7dac88fe3dd4e914b511ca7e5f83 (diff) | |
| download | rust-eb2240aca311075f4a4625c11956b582eefae9b7.tar.gz rust-eb2240aca311075f4a4625c11956b582eefae9b7.zip | |
auto merge of #17855 : steveklabnik/rust/fix_table_reference, r=alexcrichton
Markdown tables require a header, and we don't want one. Fixes #17528
| -rw-r--r-- | src/doc/reference.md | 3 | ||||
| -rw-r--r-- | src/doc/rust.css | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md index a9e247ab93b..984eba67168 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -187,6 +187,8 @@ grammar as double-quoted strings. Other tokens have exact rules given. The keywords are the following strings, organized by first letter: +<div id="keywords"> +| | | | | |----------|--------|--------|-------| | as | | | | |----------|--------|--------|-------| @@ -216,6 +218,7 @@ The keywords are the following strings, organized by first letter: |----------|--------|--------|-------| | while | | | | |----------|--------|--------|-------| +</div> Each of these keywords has special meaning in its grammar, and all of them are excluded from the `ident` rule. diff --git a/src/doc/rust.css b/src/doc/rust.css index 22e360d2015..b615c392bd5 100644 --- a/src/doc/rust.css +++ b/src/doc/rust.css @@ -392,3 +392,5 @@ pre.rust { position: relative; } background-color: #fff !important; } } + +#keywords table td { border: none; } |
