__  _
    .-.'  `; `-._  __  _
   (_,         .-:'  `; `-._
 ,'="(        (_,           )
(__,-'      ,'="(            )>
   (       (__,-'            )
    `-'._.--._(             )
       |||  |||`-'._.--._.-'
                  |||  |||
Do computers dream of electric sheep?
> kerillian.cc / Blog / Markdown Tests

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


  1. Cool
  2. Beans
  3. Beans
    1. Cool
    2. Yes

Table


KeyValue
CoolBeans
BeansCool

Quotes


Single line qoute

Multiline quote.

See?

More than one.

Outer quote

Inner quote

Syntax highlighting


lua

1for 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
11end

ruby

11.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
6end

rust

1for 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}

Image


Image

Video


YouTube