Markdown

Heading

Heading3

Heading4

Heading5

Text Style

bold text

italicized text

blockquote

Ordered List

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

Unordered List

  • First item
  • Second item
  • Third item

Code

Inline code with backticks

#![allow(unused)]
fn main() {
#[derive(Debug)]
pub enum State {
    Start,
    Transient,
    Closed,
}

impl From<&'a str> for State {
    fn from(s: &'a str) -> Self {
        match s {
            "start" => State::Start,
            "closed" => State::Closed,
            _ => unreachable!(),
        }
    }
}
}

Link

Image

Image

Horizontal Rule


www.example.com, https://example.com, and contact@example.com.

Footnote

A note1

1

Big note.

Strikethrough

one or two tildes.

Table

abcd
1234

Tasklist

  • to do
  • done

Math

$E = mc^2 + 2$