Hello, I am using this post for markdown testing. I'm not using a theme for Zola, so I have to do all the styling myself, which has required a lot of testing. I'm hoping that I am able to make this blog as mobile friendly as possible. Because I know if anybody does read this it'll most likely be on a mobile device.
Text
So we need some bold text, and how about some italic text? Okay okay how about strike through text? Alright sick.
We can probably link stuff too, and do inline code stuff
.
Lists
- Testing
- Testing
- 123
- Cool
- Beans
- Beans
- Cool
- Yes
Table
Key | Value |
---|---|
Cool | Beans |
Beans | Cool |
Quotes
Single line qoute
Multiline quote.
See?
More than one.
Outer quote
Inner quote
Syntax highlighting
lua
1 for i = 1, 100 do
2 if i % 3 == 0 and i % 5 == 0 then
3 print("FizzBuzz");
4 elseif i % 3 == 0 then
5 print("Fizz");
6 elseif i % 5 == 0 then
7 print("Buzz");
8 else
9 print(i);
10 end
11 end
ruby
1 1.upto(100) do |n|
2 print "Fizz" if a = (n % 3).zero?
3 print "Buzz" if b = (n % 5).zero?
4 print n unless (a || b)
5 puts
6 end
rust
1 for i in 1..=100 {
2 match (i % 3, i % 5) {
3 (0, 0) => println!("FizzBuzz"),
4 (0, _) => println!("Fizz"),
5 (_, 0) => println!("Buzz"),
6 (_, _) => println!("{}", i)
7 }
8 }