Mój drugi testowy post

Makoto
13.10.2025
Markdown Rendering Test
Headers
Level 3 Header
Level 4 Header
Level 5 Header
Level 6 Header
Text Formatting
This is bold text and also bold.
This is italic text and also italic.
This is bold and italic and also works.
This is strikethrough text.
This is inline code
in text.
Lists
Unordered List
- First item
- Second item
- Subitem 2.1
- Subitem 2.2
- Nested item 2.2.1
- Third item
Ordered List
- First step
- Second step
- Substep 2.1
- Substep 2.2
- Third step
Task List
Alerts
Blockquotes
This is a blockquote. It can span multiple lines.
And multiple paragraphs.
Nested blockquote:
This is a quote inside a quote.
Links and Images
Code
Code Blocks with Syntax Highlighting
function greeting(name) {
console.log(`Hello, ${name}!`);
return true;
}
greeting("World");
def fibonacci(n):
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)
print(fibonacci(10))
.container {
display: flex;
justify-content: center;
align-items: center;
background-color: #f0f0f0;
}
Tables
Header 1 | Header 2 | Header 3 |
---|---|---|
Cell 1 | Cell 2 | Cell 3 |
Left | Center | Right |
Data A | Data B | Data C |
Horizontal Rule
Special Characters and HTML
This is text with © copyright symbol.
Ctrl + C
Highlighted text
H2O (subscript)
X2 (superscript)
Escaping Characters
You can use * asterisks * without formatting.
Backslash: \
Automatic Links
Emoji
Unicode: 😀 ❤️ 🚀 🇺🇸
End of Test
This was a complete test of various Markdown elements!