As a refresher, a code block is added in Markdown using three backticks before and after the code block:
```
code
goes
here
```
And to use syntax highlighting, you add a language hint after the first three backticks:
```py
python
goes
here
```
```c
c
goes
here
```
```rust
rust
goes
here
```
0 Comments
No comments yet.