Markdown rendering
This is a demo of the basic Markdown rendering.
Headings
H2
H3
H4
H5
Text styling
Bold and italic.
Lists
Unordered
- Dogs
- Cats
- Abyssinian
- Siamese
- Cows
Ordered
- Build a blog.
- Find good static site generator.
- Select a theme.
- Shouldn’t be too complicated.
- Shouldn’t take too long to setup.
- Congrats!
Footnote
Here is a simple footnote1. With some additional text after it.
Table
Column 1 | Column 2 |
---|---|
Value 1 | Value 2 |
Code
The code can be either inline import discord.py
or multiline with the fences:
class Foo {
public:
Foo(int x);
};
int main() {
std::vector vec = {1, 2, 3};
vec[42] = x;
std::string s = "Hello, world!";
return 0;
}
Check out extensions for more code highlighting examples.
Quotes
This is a single quote.
Some text in-between.
This is a
multi line
quote
My footnote reference. ↩︎