React MarkDown Testing Blog Page
This page gives an idea about how markdown components will be rendered
Markdown Syntax Test
Headings
H1 Heading
H2 Heading
H3 Heading
H4 Heading
H5 Heading
H6 Heading
Paragraphs
This is a simple paragraph with bold, italic, and bold italic text.
This is a paragraph with
inline code
.This is a paragraph with a link.
This is a paragraph with a
.
Lists
Unordered List
- Item 1
- Item 2
- Subitem 2.1
- Subitem 2.2
- Item 3
Ordered List
- First item
- Second item
- Subitem 2.1
- Subitem 2.2
- Third item
Blockquotes
This is a blockquote.
- This is an item inside a blockquote.
Code Blocks
Inline Code
Here is some
inline code
inside a sentence.Block Code
const greet = (name) => { return `Hello, ${name}!`; }; console.log(greet("World"));
def greet(name): return f"Hello, {name}!" print(greet("World"))
Tables
Name | Age | Occupation |
---|---|---|
John | 25 | Developer |
Jane | 30 | Designer |
Mike | 27 | Engineer |
Horizontal Rule
Task Lists
- Task 1
- Task 2
- Task 3
Emojis
๐ ๐ ๐ ๐
HTML Elements
<details> <summary>Click to expand</summary> Hidden content revealed! </details>Footnotes
This is a sentence with a footnote.1
Math Equations (if supported)
Inline:
E = mc^2
Block:
\sum_{i=1}^{n} i = \frac{n(n+1)}{2}
Footnotes
-
This is the footnote content. โฉ