-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
44 lines (35 loc) · 1.5 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
site_name: "Networking with the micro:bit"
theme: readthedocs
# PXT block rendering - see https://github.com/Microsoft/pxt-mkdocs-sample
#libs: jquery
extra_javascript: [embed.js]
# not needed (we only have absolute links outside this mkdocs project)
#site_url: https://microbit.nominetresearch.uk/
# link to github source
repo_url: https://github.com/nominetresearch/microbit-networking-book
# need a custom edit URI because we've got /docs in a non-standard place
edit_uri: blob/master/
# copyright gets printed at bottom of page
copyright: "Copyright © 2017-2019 Nominet"
# TODO look at other extensions (could be useful)
# https://python-markdown.github.io/extensions/
markdown_extensions:
- footnotes
- admonition
- toc:
permalink: True
nav:
- 'Introduction': index.md
- 'Connecting micro:bits with wires': wiredcommunication/wiredcommunication.md
- 'Broadcast communication': broadcast/broadcast.md
- 'Group communication': groupcommunication/groupcommunication.md
- 'Game 1: Shakey Donkey': shakeydonkey/shakeydonkey.md
- 'Unicast Communication: One to One': unicast/unicast.md
- 'Two-way Unicast': twowayunicast/twowayunicast.md
- 'Game 2: Rock-Paper-Scissors over Radio': rockpaperscissors/rockpaperscissors.md
- 'Handling errors: Retransmissions': retransmissions/retransmissions.md
- 'Handling errors: Acknowledgements': acknowledgements/acknowledgements.md
- 'Game 3: Battleship over Radio': battleship/battleship.md
- About:
- 'Acknowledgements': about/thankyou.md
- 'Licence': about/licence.md