-
Notifications
You must be signed in to change notification settings - Fork 17
/
mkdocs.yml
77 lines (72 loc) · 1.74 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Navigation
nav:
- Home:
- 'index.md'
- 'why_software.md'
- Programming Basics:
- 'basics/roboRIO.md'
- 'basics/sensors.md'
- 'basics/wpilib.md'
- 'basics/java_basics.md'
- 'basics/vscode_tips.md'
# - 'basics/driverstation_tips.md'
- FRC Development Environment Setup:
- 'setup/install_software.md'
- 'setup/install_other.md'
- 'setup/imaging_roboRIO.md'
- FRC Programming:
- 'programming/new_project.md'
- 'programming/driving_robot.md'
- 'programming/deploying.md'
- 'programming/using_sensors.md'
- 'programming/pneumatics.md'
- 'programming/shuffleboard.md'
- 'programming/robotpreferences.md'
- 'programming/autonomous.md'
- 'programming/pid.md'
# - 'programming/super_core.md'
- Example Subsystems:
- 'examples/basic_elevator.md'
- 'examples/basic_shooter.md'
- 'examples/pid_elevator.md'
- 'examples/pid_shooter.md'
- Version Control:
- 'version_control/github.md'
- Improve the Documentation:
- 'contributing.md'
# Setup
site_name: FRC Java Programming
repo_name: Tutorial Bot
repo_url: https://github.com/FRCTeam3255/FRC-Java-Tutorial/tree/main
edit_uri: https://github.com/FRCTeam3255/FRC-Java-Tutorial/edit/main/Docs_Source/docs/
site_author: Tayler Uva
# Theme
theme:
name: 'readthedocs'
favicon: assets/favicon.png
icon:
logo: assets/favicon.png
use_directory_urls: false
# Extensions
markdown_extensions:
- admonition
- pymdownx.superfences
- pymdownx.critic
- pymdownx.details
- pymdownx.betterem
- pymdownx.tasklist
- pymdownx.extra
- pymdownx.inlinehilite
- pymdownx.highlight:
css_class: 'codehilite'
- toc:
permalink: "#"
# Plugins
plugins:
- search
- minify:
minify_html: true
minify_js: true
google_analytics:
- UA-47256977-4
- auto