search
Content Generation
Markdown Placeholder
Generate realistic Markdown documents with headings, lists, code blocks, tables, and more. Ideal for testing parsers and CMS content.
terminal Endpoint
GET /md?sections=5&title=My+Article
Returns a Markdown document with randomized sections containing paragraphs, lists, code blocks, tables, and more.
Parameters
sections
Number of sections (1–20, default: 5)
title
Document title (auto-generated if empty)
seed
Integer seed for deterministic output
features
"all" or comma-separated list of features to include
Available Features
paragraph
Body paragraphs
list
Bullet lists
ordered_list
Numbered lists
code
Fenced code blocks
table
Markdown tables
blockquote
Block quotes
image
Placeholder images
link
External links
bold_italic
Bold & italic text
h3
Sub-headings (###)
toc
Table of contents
Example Usage
Default document (all features)
/md
# Dolorem rerum architecto voluptatem
> Sed ut perspiciatis unde omnis iste natus error sit voluptatem.
## Table of Contents
- [Section 1](#section-1)
- [Section 2](#section-2)
---
## Consectetur adipiscing elit
Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua...
- Item one with some detail
- Item two explaining another point
- Nested sub-item
```javascript
function processData(data) {
const result = data.map(item => item.value);
return result.filter(Boolean);
}
```
| Name | Status | Date |
| --- | --- | --- |
| alpha | active | 2025-01-15 |
| beta | pending | 2025-03-22 |
Code & tables only
/md?sections=3&features=paragraph,code,table&seed=42
Long technical doc
/md?sections=10&title=Technical+Documentation&features=all
Rate Limiting
120 requests per minute