Skip to content

Commit 0ab184b

Browse files
committed
Added language specifier to code blocks
1 parent 03e63e4 commit 0ab184b

2 files changed

Lines changed: 12 additions & 5 deletions

File tree

src/avionics/software/usefullinks.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,22 @@ FPrime GDS - Version Problems
4545
- It is bad practice and potentially dangerous to downgrade the compiler version being used on your machine, so if you for example run GLIBC version 2.35, don't try to change what version your computer uses. Your operating system is meant to run on the compiler version that it comes with, so don't try to change it. That is why we use a VM to compile with the correct version.
4646
- To get the executable onto the beaglebone black, use scp:
4747

48-
scp {RELEVANT DIR}/Ref debian@192.168.7.2:~
48+
```shell
49+
scp {RELEVANT DIR}/Ref debian@192.168.7.2:~
50+
```
4951

5052
- From there you need to make sure you give it the appropriate permissions to be able to run it:
5153

52-
sudo chmod +x Ref
54+
```shell
55+
sudo chmod +x Ref
56+
```
57+
5358
- Setting up said VM:
5459
- After cloning the repo, installing the tools, then building on the machine, run the following to get the proper tools installed:
5560

56-
sudo apt install crossbuild-essential-armhf
61+
```shell
62+
sudo apt install crossbuild-essential-armhf
63+
```
5764

5865
- The beagleboneblack toolchain on the github has the correct path of CMAKE already set up, so use that toolchain to generate and build
5966

src/editing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ git push origin main
4141

4242
The documentation root looks like this.
4343

44-
```
44+
```markdown
4545
book/ The theme and styling of the website itself.
4646
src/ The folder containing site content.
4747
book.toml Backend parameters for the site generator.
@@ -59,7 +59,7 @@ There is also a guide specific for this book available on the [mdBook documentat
5959

6060
The documentation inside the `src/` folder is structured as shown below.
6161

62-
```
62+
```markdown
6363
SUMMARY.md
6464
avionics/
6565
- currentprojects/

0 commit comments

Comments
 (0)