Skip to content
This repository was archived by the owner on Apr 25, 2026. It is now read-only.

Latest commit

 

History

History
88 lines (59 loc) · 1.74 KB

File metadata and controls

88 lines (59 loc) · 1.74 KB

Example Markdown Document

This is an example markdown file to demonstrate the capabilities of our markdown server.

Code Examples

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'));

Lists

Unordered List

  • First item
  • Second item
    • Nested item
    • Another nested item
  • Third item

Ordered List

  1. First step
  2. Second step
  3. Third step

Links and Images

Visit the main page to see all markdown files.

Example Image

Tables

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

Blockquotes

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.

Horizontal Rules


Mixed Content

You can mix all these elements together:

  1. Bold text and italic text
  2. Inline code and links
  3. Blockquotes within lists

Code with syntax highlighting

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!