Markdown Block

In the Markdown block you can use Markdown, Kirbytext and Markdown Extra. Although there is no preview within the Panel it’s a powerful and versatile block.

Headings

## Heading 2   
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Inline

**Yes,** you *can* also use `html` in Markdown, if you like.

Yes, you can also use html in Markdown, if you like.

Lists

- List item     1. List item
- List item     2. List item
- List item     3. List item
  • List item
  • List item
  • List item

Definition List

Apple
: Pomaceous fruit of plants of the genus Malus in the family Rosaceae.

Orange
: The fruit of an evergreen tree of the genus Citrus.
Apple
Pomaceous fruit of plants of the genus Malus in the family Rosaceae.
Orange
The fruit of an evergreen tree of the genus Citrus.

Tables

| Header     | Header     | Header     | Header     |
| ---------- | ---------- | --------   | ---------  |
| Table data | Table data | Table data | Table data |
| Table data | Table data | Table data | Table data |
Header Header Header Header
Table data Table data Table data Table data
Table data Table data Table data Table data

Footnotes

This is text with a footnote.[^1]


[^1]: I'm the footnote.

This is text with a footnote.1


  1. I’m the footnote. 

Abbreviations

*[HTML]: Hyper Text Markup Language
*[W3C]: World Wide Web Consortium

The HTML specification is maintained by the W3C.

Instead of embedding the full URL directly within the text, you can use a reference-style link to keep your content cleaner and more readable. Since the link is defined in one place, you can easily update it without modifying every instance in the document.

In a Markdown Block you can use: 
[Markdown][1], [Kirbytext][2] and [Markdown Extra][3].

[1]: https://daringfireball.net/projects/markdown/basics
[2]: https://getkirby.com/docs/reference/text/kirbytags
[3]: https://michelf.ca/projects/php-markdown/extra/

In a Markdown Block you can use Markdown, Kirbytext and Markdown Extra.

Attributes id & class

### Header 3  {#header3 .class}

[Link back to header 3](#header3)

Header 3

Link back to header 3

Custom tag

<panel>
This is text within a panel …
</panel>

This is text within a panel …

Share