Markdown rendering

This is a demo of the basic Markdown rendering.

Headings

H2

H3

H4

H5

Text styling

Bold and italic.

Lists

Unordered

Ordered

  1. Build a blog.
    1. Find good static site generator.
    2. Select a theme.
      • Shouldn’t be too complicated.
      • Shouldn’t take too long to setup.
  2. Congrats!

Footnote

Here is a simple footnote1. With some additional text after it.

Table

Column 1Column 2
Value 1Value 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


  1. My footnote reference. ↩︎