-
Notifications
You must be signed in to change notification settings - Fork 0
markdown
ABKQPO edited this page Apr 25, 2026
·
1 revision
| Markdown | Alternative | Result |
|---|---|---|
*Italic* |
_Italic_ |
Italic |
**Bold** |
__Bold__ |
Bold |
~~Strikethrough~~ |
~Strikethrough~ |
|
[Link](http://a.com) |
Link | |
[Relative Link](./index.md) |
Link | |
[Absolute Link](guidenh:index.md) |
Absolute Link | |
`Inline Code` |
Inline Code |
|
 |
![]() |
Headings can be defined by prefixing them with #.
Horizontal Rule:
Markdown:
---
Result:
Markdown:
> Blockquote
Result:
Blockquote
Markdown:
* List
* List
* List
1. One
2. Two
3. Three
Result:
- List
- List
- List
- One
- Two
- Three
Markdown:
| First Header | Second Header |
| ------------- | ------------- |
| Content Cell | Content Cell |
| Content Cell | Content Cell |
Result:
| First Header | Second Header |
|---|---|
| Content Cell | Content Cell |
| Content Cell | Content Cell |
