-
Notifications
You must be signed in to change notification settings - Fork 0
Markdown Reference
GitHub Copilot edited this page May 12, 2026
·
1 revision
mdedit.io uses CommonMark as its base, extended with GitHub Flavored Markdown (GFM), Pandoc extensions, and mdedit-specific features.
# Heading 1
## Heading 2
### Heading 3**bold** _italic_ ~~strikethrough~~ ==highlight==- Unordered item
- Another item
- Nested item
1. Ordered item
2. Second item[Link text](https://example.com)

{ width=60% }| Column 1 | Column 2 |
|---|---|
| Cell | Cell |Inline `code` and fenced blocks:
```python
def hello():
print("Hello")
### Blockquotes
```markdown
> This is a blockquote.
---Text with a footnote.[^1]
[^1]: The footnote content.Term
: Definition text.- [x] Completed
- [ ] OpenInline: $E = mc^2$
Block:
$$
\int_0^\infty e^{-x^2} dx = \frac{\sqrt{\pi}}{2}
$$```mermaid
graph TD
A[Start] --> B[Process] --> C[End]
```[[toc]]<!-- page-break -->:::: columns
::: column
Left column content
:::
::: column
Right column content
:::
::::::: title-page
# My Title {.no-toc}
## Subtitle {.no-toc}
**Author** · Institution · Date
:::## My Section {#sec:intro}
See [@sec:intro] for details.---
number-sections: true
------
title: "Document Title"
author:
- Author Name
date: 2026-05-12
lang: en-US
preset: scientific
number-sections: true
citation-source: embedded
reference-section-title: References
link-citations: true
---