Browse Source

Hopefully fixes navigation - works locally.

Herbert Wolverson 4 years ago
parent
commit
b59ca3ae0a
2 changed files with 5 additions and 2 deletions
  1. 4 0
      book/book.toml
  2. 1 2
      book/src/SUMMARY.md

+ 4 - 0
book/book.toml

@@ -4,3 +4,7 @@ language = "en"
 multilingual = false
 src = "src"
 title = "Roguelike Tutorial - In Rust"
+
+[output.html]
+theme = "rust"
+google-analytics = "UA-132191594-2"

+ 1 - 2
book/src/SUMMARY.md

@@ -3,8 +3,7 @@
 [Introduction](./chapter_0.md)
 
 - [Section 1 - Hello Rust](./chapter_1.md)
-    - [Hello Rust](./chapter_1.md)
-    - [Entities & Components](./chapter_2.md)
+    - [Entities and Components](./chapter_2.md)
     - [Walking A Map](./chapter_3.md)
     - [A More Interesting Map](./chapter_4.md)
     - [Field of View](./chapter_5.md)