Examples of markdown formatting
1<h1>Heading 1</h1>1<h2>Heading 2</h2>1<h3>Heading 3</h3>1<h4>Heading 1</h4>1<h5>Heading 1</h5>1<h6>Heading 1</h6>The quick brown fox jumps over the ~lazy~ dog.
Hello World!Hello World!Back Ticks aren't supported!
1void helloWorld() {
2 print('Hello World')
3}1<template>
2 <div class="pt-24">
3 <ContentDoc class="prose dark:prose-invert" />
4 <h2>Contact Form</h2>
5 </div>
6</template>

| Tables | Are | Cool |
|---|---|---|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
Colons can be used to align columns.
| Markdown | Less | Pretty |
|---|---|---|
| Still | renders | nicely |
| 1 | 2 | 3 |
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.
1function logSomething(something) {
2 console.log('Something', something);
3}