💄 style: set Cascadia Code as code font

Modifies the markdown file to showcase the font's ligatures.
This commit is contained in:
welpo
2023-02-11 19:31:53 +01:00
parent e387f792c3
commit d412eae7df
3 changed files with 16 additions and 1 deletions

View File

@@ -9,7 +9,13 @@ tags = ["markdown", "test"]
```rust
fn main() {
println!("Hello World");
let number: u8 = 4;
match number {
i if i == 0 => println!("Zero"),
i if i > 0 => println!("Greater than zero")
i if i <= 0 => println!("Smaller or equal to zero"),
}
}
```
## Quote