Skip to content

Instantly share code, notes, and snippets.

@steveosoule
Created October 29, 2025 19:47
Show Gist options
  • Save steveosoule/42503c57f2f3f180336fd26e839f14de to your computer and use it in GitHub Desktop.
Save steveosoule/42503c57f2f3f180336fd26e839f14de to your computer and use it in GitHub Desktop.
Miva's Supported Markdown Kitchen Sink
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<p>Paragraph</p>
<ol>
<li>List item</li>
<li>List item</li>
<li>List item</li>
</ol>
<ul>
<li>Bullet item</li>
<li>Bullet item</li>
<li>Bullet item</li>
</ul>
<blockquote>
<p>Block quote</p>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<p>Paragraph</p>
<ol>
<li>List item</li>
<li>List item</li>
<li>List item</li>
</ol>
<ul>
<li>Bullet item</li>
<li>Bullet item</li>
<li>Bullet item</li>
</ul>
</blockquote>
<p>Final paragraph margin check</p>
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Paragraph

1. List item
	1. Nested
		1. Nested Again
1. List item
1. List item

- Bullet item
	- Nested
		- Nested Again
- Bullet item
- Bullet item

> Block quote
>
> # Heading 1
> ## Heading 2
> ### Heading 3
> #### Heading 4
> ##### Heading 5
> ###### Heading 6
>
> Paragraph
>
> 1. List item
>	1. Nested
>		1. Nested Again
> 1. List item
> 1. List item
>
>
> 	- Nested
>		- Nested Again
>
>

Final paragraph margin check
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment