Markdown

Examples of markdown formatting

Heading 1

<h1>Heading 1</h1>

Heading 2

<h2>Heading 2</h2>

Heading 3

<h3>Heading 3</h3>

Heading 4

<h4>Heading 1</h4>
Heading 5
<h5>Heading 1</h5>
Heading 6
<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
void helloWorld() { print('Hello World') }

Javascript

javascript
<template> <div class="pt-24"> <ContentDoc class="prose dark:prose-invert" /> <h2>Contact Form</h2> </div> </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
function logSomething(something) { console.log('Something', something); }