-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Delete the old docs, lift up the new #4904
Conversation
This commit deletes the old documentation now that the "official source" is the main book. The book is now lifted up directly into `src/doc` instead of `src/doc/book`. The CI no longer builds documentation and has been updated to just run mdbook to make sure there's no errors. The documentation will actually get published in the rust-lang/rust repo
@bors: r+ |
📌 Commit 1271bb4 has been approved by |
Delete the old docs, lift up the new This commit deletes the old documentation now that the "official source" is the main book. The book is now lifted up directly into `src/doc` instead of `src/doc/book`. The CI no longer builds documentation and has been updated to just run mdbook to make sure there's no errors. The documentation will actually get published in the rust-lang/rust repo
☀️ Test successful - status-appveyor, status-travis |
This PR seems to have dropped changes which had only been made to the old docs. For example, 45cc30b (#4817) added $ git grep incremental a44612f2 -- src/doc/
…no hits… I think we need to audit the renames here to see what was dropped, and file cherry-picks (or something) to recover the lost updates. |
Ah, sorry. I hadn't noticed #4906 fixing these. |
doc/guide/dependencies: Add a 'rust' language marker This had been added to the non-book docs in 2ad45a5 (#4455), despite the fact that the book didn't actually have that marker: $ git cat-file -p 2ad45a5:src/doc/book/src/guide/dependencies.md | grep -A2 'You can now use the' You can now use the `regex` library using `extern crate` in `main.rs`. ``` This is (along with the already-landed #4916), part of recovering from #4904.
This commit deletes the old documentation now that the "official source" is the
main book. The book is now lifted up directly into
src/doc
instead ofsrc/doc/book
.The CI no longer builds documentation and has been updated to just run mdbook to
make sure there's no errors. The documentation will actually get published in
the rust-lang/rust repo