2.4 KiB
title, date, author, tags
| title | date | author | tags |
|---|---|---|---|
| Markdown Formatting Test | 2026-09-11 | Test Author | test, formatting, markdown |
Heading 1 test 123
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
Text Formatting
This is bold text and this is italic text and this is bold italic text.
Here's some inline code in a sentence.
Links
Here's a regular link and here's a YouTube link.
Lists
Unordered list:
-
First item
-
Second item
-
Third item
Ordered list:
- First step
- Second step
- Third step
Code Blocks
Standard JavaScript:
const hello = "world";
console.log(hello);
function test() {
return true;
}
Python with syntax highlighting:
def hello_world():
print("Hello, World!")
return True
Code with max height (200px):
// This is a long code block that will scroll
const data = [1, 2, 3, 4, 5];
function processData(arr) {
return arr.map(x => x * 2);
}
console.log(processData(data));
// Adding more lines to demonstrate scrolling
for (let i = 0; i < 10; i++) {
console.log(`Iteration ${i}`);
}
// Even more content
const obj = {
name: "Test",
value: 42,
nested: {
deep: true
}
};
Blockquotes
This is a blockquote. It can span multiple lines. And continues here.
Horizontal Rule
Images
Mixed Content
You can mix bold, italic, and code in the same paragraph. Here's a link with bold text too.
Nested Lists
-
Top level itemsss
-
Another top level
-
Nested item (if supported)
-
Another nested
-
-
Numbered item
-
Another numbered
-
Mixed with bullets
-
More bullets
-
Special Characters
Testing special chars: < > & " '
Long Paragraph
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

