Markdown
Heading
Heading3
Heading4
Heading5
Text Style
bold text
italicized text
blockquote
Ordered List
- First item
- Second item
- 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
Horizontal Rule
Autolink literals
www.example.com, https://example.com, and contact@example.com.
Footnote
A note1
Strikethrough
one or two tildes.
Table
| a | b | c | d |
|---|---|---|---|
| 1 | 2 | 3 | 4 |
Tasklist
- to do
- done
Math
$E = mc^2 + 2$
-
Big note. ↩