Markdown

Examples of markdown formatting

Heading 1

1
<h1>Heading 1</h1>

Heading 2

1
<h2>Heading 2</h2>

Heading 3

1
<h3>Heading 3</h3>

Heading 4

1
<h4>Heading 1</h4>
Heading 5
1
<h5>Heading 1</h5>
Heading 6
1
<h6>Heading 1</h6>

Formatting

The quick brown fox jumps over the ~lazy~ dog.

Ordered List

  1. Alpha
  2. Bravo
  3. Charlie

Unordered List

  • JS
  • TS
  • Python

Inline Code

  • Hello World!
  • Hello World!

Quotes

Back Ticks aren't supported!

Code Blocks

Dart

dart
1
void helloWorld() {
2
print('Hello World')
3
}

Javascript

javascript
1
<template>
2
<div class="pt-24">
3
<ContentDoc class="prose dark:prose-invert" />
4
<h2>Contact Form</h2>
5
</div>
6
</template>

Images

10,000

Gifs

homer

Tables

TablesAreCool
col 3 isright-aligned$1600
col 2 iscentered$12
zebra stripesare neat$1

Colons can be used to align columns.

MarkdownLessPretty
Stillrendersnicely
123

There must be at least 3 dashes separating each header cell. The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown.

Click me

Heading

  1. Foo
  2. Bar
    • Baz
    • Qux

Some Javascript

js
1
function logSomething(something) {
2
console.log('Something', something);
3
}