H1

H2

H3

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Aliquet sagittis id consectetur purus ut. In pellentesque massa placerat duis ultricies. Neque laoreet suspendisse interdum consectetur libero id. Justo nec ultrices dui sapien eget mi proin. Nunc consequat interdum varius sit amet mattis vulputate. Sollicitudin tempor id eu nisl nunc mi ipsum. Non odio euismod lacinia at quis. Sit amet nisl suscipit adipiscing. Amet mattis vulputate enim nulla aliquet porttitor lacus luctus accumsan. Sit amet consectetur adipiscing elit pellentesque habitant. Ac placerat vestibulum lectus mauris. Molestie ac feugiat sed lectus vestibulum mattis ullamcorper velit sed. Google

Markdown Logo

Code Block

fn main() {
    println!("Hello World");
}
1fn main() {
2 println!("Hello World");
3}

Ordered List

  1. First item
  2. Second item
  3. Third item

Unordered List

  • List item
  • Another item
  • And another item

Nested list

  • Fruit
    • Apple
    • Orange
    • Banana
  • Dairy
    • Milk
    • Cheese

Quote

Two things are infinite: the universe and human stupidity; and I'm not sure about the universe.
Albert Einstein

Table Inline Markdown

ItalicsBoldCodeStrikeThrough
italicsboldcodestrikethrough

Foldable Text

Title 1

IT'S A SECRET TO EVERYBODY.

Title 2

Stay awhile, and listen!

Code tags

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

Note

Here is an example of the note shortcode:

This one is static!

Note!

This blog assumes basic terminal maturity

This one is clickable!

Syntax:

{{ note(header="Note!", body="This blog assumes basic terminal maturity") }}
{{ note(clickable=true, hidden = true, header="Quiz!", body="The answer to the quiz!") }}

You can also use some HTML in the text:

Note!

This blog assumes basic terminal maturity

Literal shortcode:

{{ note(header="Note!", body="<h1>This blog assumes basic terminal maturity</h1>") }}

Pretty cool, right?

Finally, you can do something like this (hopefully):

Hello this is markdown inside a note shortcode

fn main() {
    println!("Hello World");
}

We can't call another shortcode inside a shortcode, but this is good enough.

Here is the raw markdown:

{{ note(clickable=true, header="Quiz!") }}

# Hello this is markdown inside a note shortcode

\`\`\`rust
fn main() {
    println!("Hello World");
}
\`\`\`

We can't call another shortcode inside a shortcode, but this is good enough.

{{/* end */}}

Finally, we have center

Centered Text

This is centered text

{{ note(center=true, header="Centered Text", body="This is centered text") }}

It works good enough for me!