Markdown Features

This server supports rich Markdown with powerful extensions. See them all in action!

Headings

H1 Heading

H2 Heading

H3 Heading

H4 Heading

H5 Heading
H6 Heading

All headings automatically get: - Unique IDs for linking - Permalink icons on hover (๐Ÿ”—) - Table of contents entries


Text Formatting

Bold text using **bold**

Italic text using *italic*

Bold and italic using ***both***

~~Strikethrough~~ using ~~strikethrough~~


Lists

Unordered Lists

Ordered Lists

  1. First item
  2. Second item
  3. Nested 2.1
  4. Nested 2.2
  5. Third item

Task Lists


Code Blocks

Inline Code

Use backticks for inline code like const x = 5;

Syntax Highlighted Blocks

Python example:

def fibonacci(n):
    """Calculate Fibonacci number."""
    if n <= 1:
        return n
    return fibonacci(n-1) + fibonacci(n-2)

# Usage
result = fibonacci(10)
print(f"Fibonacci(10) = {result}")

JavaScript example:

// Async/await example
async function fetchData(url) {
    try {
        const response = await fetch(url);
        const data = await response.json();
        return data;
    } catch (error) {
        console.error('Error:', error);
    }
}

Bash example:

# Docker deployment
docker build -t my-app .
docker run -p 8080:8080 my-app

# With environment variables
docker run \
  -e DEBUG=true \
  -e PORT=3000 \
  -p 3000:3000 \
  my-app

Tables

Tables are fully supported with automatic styling:

Feature Supported Notes
Markdown โœ… Yes Full CommonMark support
Code Highlighting โœ… Yes Pygments-powered
Tables โœ… Yes You're looking at one!
Math โŒ No Not yet implemented
Mermaid โœ… Yes Diagrams supported

Table with Alignment

Left Aligned Center Aligned Right Aligned
Left Center Right
Text Text Text
More More More

Link to other pages: Quick Setup Guide

Link to sections: Back to Code Blocks

Visit GitHub or Python.org

External links open in new tabs automatically in the navigation.


Blockquotes

This is a blockquote. It can span multiple lines.

And even multiple paragraphs!

Pro Tip: Blockquotes are great for callouts, tips, and warnings.


Horizontal Rules

Separate content with horizontal rules:


Like that one above!


Images

Images are automatically handled:

Example Image

Images support: - PNG, JPG, GIF, SVG - Automatic sizing - Responsive layout - Lazy loading


Footnotes

You can add footnotes1 to your documentation.

Another footnote2 reference.


Definition Lists

Term 1
Definition of term 1
Term 2
Definition of term 2
Another definition for term 2

Abbreviations

The HTML specification is maintained by the W3C.


Advanced Features

Nested Lists with Code

  1. First step
    print("Step 1")
    
  2. Second step
    print("Step 2")
    
  3. Third step

Mixed Content

You can mix bold, italic, code, and links in tables:

Feature Code Link
Bold code link
Italic more another

Escaping

Need to show literal markdown? Escape with backslash:

**Not bold**

`Not code`

[Not a link](url)


Special Characters

The server handles special characters correctly:


What's Not Supported?

Currently not implemented: - Math equations (LaTeX) - Embedded videos - Custom HTML components - MDX-style components

Everything else from CommonMark and popular extensions is supported!


Next Steps


  1. This is the first footnote. 

  2. This is the second footnote with more text.