My second test blog post
Makoto
10/13/2025
CSSTypeScriptweb developmentNuxt.js
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
Highlights information that users should take into account, even when skimming.
Highlights information that users should take into account, even when skimming.
Highlights information that users should take into account, even when skimming.
Optional information to help a user be more successful.
Crucial information necessary for users to succeed.
Critical content demanding immediate user attention due to potential risks.
Negative potential consequences of an action.
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!


