Skip to content

doc,rustdoc: improvements #9960

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Oct 22, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ src/.DS_Store
/nd/
/llvm/
version.md
rust.tex
*.tex
keywords.md
x86_64-apple-darwin/
x86_64-unknown-linux-gnu/
Expand Down
2 changes: 1 addition & 1 deletion doc/README
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To generate HTML documentation from one source file/crate, do something like:
To generate an HTML version of a doc from Markdown, without having Node.js
installed, do something like:

pandoc --from=markdown --to=html --number-sections -o rust.html rust.md
pandoc --from=markdown --to=html5 --number-sections -o rust.html rust.md

The syntax for pandoc flavored markdown can be found at:
http://johnmacfarlane.net/pandoc/README.html#pandocs-markdown
Expand Down
8 changes: 0 additions & 8 deletions doc/lib.css

This file was deleted.

6 changes: 0 additions & 6 deletions doc/manual.css

This file was deleted.

7 changes: 7 additions & 0 deletions doc/manual.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<style>
/* Display the full TOC */
#TOC ul ul {
display: block;
padding-left: 2em;
}
</style>
Loading