This is an example markdown file to demonstrate the capabilities of our markdown server.
Here's some inline code: const message = "Hello, World!";
And here's a code block:
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet('Markdown Server'));- First item
- Second item
- Nested item
- Another nested item
- Third item
- First step
- Second step
- Third step
Visit the main page to see all markdown files.
| Feature | Status | Description |
|---|---|---|
| Headers | ✅ | All header levels supported |
| Lists | ✅ | Ordered and unordered |
| Code | ✅ | Inline and block code |
| Links | ✅ | Internal and external |
| Images | ✅ | Local and remote |
| Tables | ✅ | Full table support |
| Blockquotes | ✅ | Styled quotes |
This is a blockquote. It can contain multiple lines and is styled with a left border and italic text.
Another blockquote with bold text and
inline code.
You can mix all these elements together:
- Bold text and italic text
Inline codeand links-
Blockquotes within lists
def fibonacci(n):
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)
# Print first 10 Fibonacci numbers
for i in range(10):
print(fibonacci(i))This document demonstrates the full range of markdown features supported by our server!
Vibe coded with AI pair programming!