đ English, 䏿
This document tests all supported GitHub-Flavored Markdown (GFM) syntax features and their rendering results in HTML for the wklchris/markdown-css-for-pandoc repository.
This is an illustrative webpage but not a user guide. For the user guide, see ReadMe in the repo.
Table of Contents:
**bold**
or
__bold__
*italic*
or _italic_
~~strikethrough~~
X<sup>2</sup>
H<sub>2</sub>O
<u>underline with u tag</u>
<ins>underline with ins tag</ins>
This is an example with a footnote1.
This is a blockquote Can be used multiline
Quote indentation
Ending line
Note:
Note
This is a note alert
Tip:
Tip
This is a tip alert
Important:
Important
This is an important alert
Warning:
Warning
This is a warning alert
Caution:
Caution
This is a caution alert
Single line:
text = "Code block"
No syntax highlighting:
int main() {
return 0;
}
With syntax highlighting:
from pathlib import Path
def hello():
# Function comments
print("Hello, World!")
A paragraph of text.
Use git status
command to check the status.
Another paragraph of text.
Test unordered list:
Test ordered list:
Paragraph after ordered list.
Test task list:
Paragraph after task list.
Test image:
Test table:
Left-aligned | Centered | Right-aligned |
---|---|---|
Data1 | Data2 | Data3 |
Data4 | Data5 | Data6 |
Paragraph after table.
Inline formula: \(E=mc^2\)
Block formula:
\[ A = \begin{pmatrix} 1 & 2 \\ 3 & 4 \\ \end{pmatrix} \]
Another block formula:
\[ a^2 + b^2 = c^2 \]
Paragraph after formula.
<details>
Paragraph after collapse syntax block.
This is the footnote content. GFM supports footnote syntax.âŠī¸