Library
Style guide and markdown documentation. See the official markdown-it demo for more examples.
Text #
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
##### Heading 6
**bold**
*italic*
[link](#)
> This is a blockquote
Heading 2 #
Heading 3 #
Heading 4
Heading 5
Heading 6
bold
italic
link
This is a blockquote
Images #
Add image content to /static/
. The markdown-it-linkify-images plugin is used to automatically generate a link to a full-size version of the image. Images should be optimized before being added to the repository.

Lists #
* list item
* list item
* Sub item
* Sub item
* list item
1. Ordered item
a. foo
b. bar
2. Ordered item
3. Orderer item
- list item
- list item
- Sub item
- Sub item
- list item
- Ordered item
a. foo
b. bar - Ordered item
- Orderer itemm
Code #
Code blocks should include the language for syntax highlighting.
```js
const x = 10;
```
const x = 10;
Footnotes #
Inline footnotes link to footnotes that can be defined anywhere in the document, and which will be rendered at the bottom of the page.
number finite but unbounded.[^first]...of our questions Drake Equation.[^second]
[^first]: Footnotes **can have markup** and multiple paragraphs.
[^second]: Footnote text
number finite but unbounded.[1]…of our questions Drake Equation.[2]
Callouts #
Use a special syntax to insert callout boxes like these within the flow of your text. Similar but different than a block quote, this can be used to call out or highlight a variety of things within your content.
::: callout
*callout: yellow is the default color for a callout*
:::
::: warning
*warning: here be dragons*
:::
callout: yellow is the default color for a callout
warning: here be dragons
Checklists #
Display progress against tasks.
- [ ] Mercury
- [x] Venus
- [x] Earth (Orbit/Moon)
- [x] Mars
- [x] Jupiter
- [ ] Saturn
- [ ] Uranus
- [ ] Neptune
- [ ] Comet Hale
- Mercury
- Venus
- Earth (Orbit/Moon)
- Mars
- Jupiter
- Saturn
- Uranus
- Neptune
- Comet Haley
Tables #
Layout data in columns will headers and rows.
| Option | Description |
| ------ | ----------- |
| data | Description of data option |
| props | Description of props option |
| state | Description of state option |
Option | Description |
---|---|
data | Description of data option |
props | Description of props option |
state | Description of state option |