Exercise 2: Add a new file to the table of contents#
Let’s continue by adding one additional step. Let’s add a file to the table of contents! the _toc.yml
contains a list of all the files to be shown in your book-website. Let’s add a file which is not in the table of contents yet!
Can you add the file named
file_to_be_added_to_toc.md
to the book website?
Go to the
Code
-Book
directory of your GitHub repository and find the location offile_to_be_added_to_toc.md
Go to the the file
book/_toc.yml
on your GitHub repository -Code
-Book
-_toc.yml
-Edit this file
Add
file_to_be_added_to_toc.md
as a second subpage undersome_content/overview.md
.some_content/text_and_code.ipynb
is the first subpage.
Need some help?
Your _toc.yml
should look like
format: jb-book
root: intro.md
parts:
- caption: Contents
chapters:
- file: some_content/overview.md
sections:
- file: some_content/text_and_code.ipynb
- file: file_to_be_added_to_toc.md
- file: exercises/exercises
sections:
- file: exercises/001.md
- file: exercises/002.md
- file: exercises/003.md
- file: exercises/004.md
- file: exercises/005.md
- file: exercises/006.md
- file: references.md
- file: changelog.md
- file: credits.md
Click
Commit changes
Add a message and description of your change
Select
Commit directly to the main branch
(this adds your change your change to the default version instead of making a new one)Click
Commit changes
Go to
Actions
- The most recent workflow runUpdate _toc.yml / the commit message of the commit you just made
- Wait for it to finish - In the summary, click on the link of your book shown in the tableBranches deployed
and underPrimary book at root
(getting bored of waiting? There’ll be exercising on doing this locally which prevents you from waiting)Do you see your change? If you don’t see it click
CTRL
+F5
/Control
+F5
to refresh the page.
Check your understanding
Before moving on to the next exercise, make sure you understand the following:
Are all files in the repository added to the website?
What is the purpose of the
_toc.yml
file?What happens if a file is not listed in the
_toc.yml
?How can you verify that your changes to
_toc.yml
were successful?Does the structure of the
_toc.yml
file need to match the directory structure of the repository?