This document is designed to test the rendering of various Markdown syntax elements, including common extensions.
1. Basic Text Formatting
Here we test the most common formatting styles.
- This is a simple paragraph with bold text and italic text.
- You can also combine them like bold and italic.
- This text has
inline codewithin the line. - This is highlighted text, which is a common extension.
2. Headers and Structure
You can see different levels of headers below.
This is a Level 3 Header
It's often used for sub-sections.
This is a Level 4 Header
For more granular divisions.
This is a Level 5 Header
Useful for very specific points within a section.
3. Lists
Unordered List
- First item
- Second item
- Nested item A
- Nested item B
- Third item
Ordered List
- Step one: Do this.
- Step two: Do that.
- Step three: Profit.
4. Links and Media
Here's a link to Google's search engine.
And here is an example of an embedded image. The path is a placeholder.

5. Callout Blocks (Admonitions)
These are special blockquote extensions used for notices.
๐Note[!NOTE]
This is a note. It provides useful, supplementary information.
๐กTip[!TIP]
This is a tip. It suggests a more efficient way to do something.
๐Example[!EXAMPLE]
This is an example. For instance, if you inputx = 5, the output will bey = 25.
โน๏ธInfo[!INFO]
This is an info block. It provides neutral, factual details.
โ ๏ธWarning[!WARNING]
This is a warning. Be careful! Performing this action may delete your data.
โQuote[!QUOTE]
"The only way to do great work is to love what you do." - Steve Jobs
๐Abstract[!ABSTRACT]
In summary, the key findings from the demo indicate that all rendering elements are functioning as expected.
6. Mathematical Content
We can include inline math like the Pythagorean theorem: .
We can also display more complex formulas in a separate block:
7. Code Blocks
You can create a fenced code block with syntax highlighting.
def greet(name):
"""This is a simple Python function."""
print(f"Hello, {name}!")
# Call the function
greet("World")
