Skip to content

Commit cdbe422

Browse files
authored
Merge pull request #5 from FRCTeam3255/readthedocs
2 parents 8a52df4 + 8672723 commit cdbe422

File tree

23 files changed

+38
-100
lines changed

23 files changed

+38
-100
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @FRCTeam3255/code-reviewers

.github/workflows/build.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Build MkDocs
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-python@v5
12+
with:
13+
python-version: 3.x
14+
- run: pip install -r requirements.txt
15+
- run: mkdocs build

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ SuperNURDS tutorial Notes checkoff.pages
22
FRC Programming Tutorial VSC.pdf
33
*.key
44
.DS_Store
5-
site/
5+
site/
6+
.unotes/templates/title_date.hbs

docs/assets/images/logos/first.png

100644100755
290 Bytes
Loading
75.3 KB
Loading
4.33 KB
Loading
47.6 KB
Loading

docs/examples/basic_elevator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# **WIP** Basic Elevator Subsystem
1+
# [WIP] Basic Elevator Subsystem
22
<!-- This page was contributed by: -->
33

44
Subtitle

docs/examples/basic_shooter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# **WIP** Basic Shooting Subsystem
1+
# [WIP] Basic Shooting Subsystem
22
<!-- This page was contributed by: -->
33

44
Subtitle

docs/examples/pid_elevator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# **WIP** PID Driven Elevator
1+
# [WIP] PID Driven Elevator
22
<!-- This page was contributed by: -->
33

44
Subtitle

0 commit comments

Comments
 (0)