Pyro

Docs

Markdown Features

Pyro supports the entirety of the markdown spec as well as many common extensions.

Below are some examples from the excellent markdownguide.org

Headings

### H3

#### H4

##### H5

H3

H4

H5

Formatted text

**bold text**

_italicized text_

> blockquote

[text with link](https://www.example.com)

~~Crossed out text~~

bold text

italicized text

blockquote

text with link

Crossed out text

Lists

### Numbered list

1. First item
2. Second item
3. Third item

### Unordered list

- First item
- Second item
- Third item

### Checklist

- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media

Numbered list

  1. First item
  2. Second item
  3. Third item

Unordered list

  • First item
  • Second item
  • Third item

Checklist

  • Write the press release
  • Update the website
  • Contact the media

Code blocks

`code`

```json
{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}
`` `
```

code

{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}

HTML

<image src="/icon.png" width="100px">

<button class="bg-gray-100 hover:bg-gray-200 px-4 py-2 rounded" onClick="alert('hi!')">Click
Me</button>

Separator

---

Tables

| Syntax    | Description |
| --------- | ----------- |
| Header    | Title       |
| Paragraph | Text        |
Syntax Description
Header Title
Paragraph Text