Skip to content
MarkdownTools
All Tools
Cheat Sheets
Cheat Sheet
Discord
R Markdown
Obsidian
Obsidian Callouts
Obsidian Wikilinks
Reddit
GitLab
Slack
Jupyter
GitHub MD
Emoji Cheat Sheet
Discord Code Blocks
Discord Formatting
Discord Spoilers
Converters
HTML → MD
MD → HTML
MD → PDF
PDF → MD
MD → Word
GDocs → MD
CSV → Table
Excel → Table
JSON → Table
Notion → MD
Rich Text → MD
MD → Rich Text
Confluence → MD
MD → Slack
MD → Discord
MD → WhatsApp
MD → Telegram
Remove MD
MD → Jira
Jira → MD
MD → BBCode
OpenAPI -> MD
DOCX to MD
MD to DOCX
ChatGPT to Word
ChatGPT to PDF
Claude to PDF
Gemini to PDF
Generators
Table Generator
Quote Generator
TOC Generator
README
Profile README
Badges
Link Generator
Code Block
Discord Timestamps
Discord Colors
Checkboxes
README Templates
Changelog
llms.txt
Quote Blocks
Image Syntax
GitHub Images
GitHub Code Blocks
Text Tools
Word Counter
Text Compare
Case Converter
Snake Case
Kebab Case
aLtErNaTiNg
Title Case
Char Counter
Twitter Counter
CJK Counter
Reading Time
Markdown Lint
README Audit
Link Checker
MDX Validator
Tables
Merge Cells
Table Formatter
No Header Table
Table Align
Center Table
HTML Table → MD
MD Table → CSV
MD Table → JSON
MD Table → Excel
MD Table → HTML
MD Table → LaTeX
Editor
Viewer
Search…
Ctrl K
My documents
OpenAPI to Markdown
Convert OpenAPI JSON or YAML into endpoint documentation.
OpenAPI spec
openapi: 3.1.0 info: title: Widget API version: 1.0.0 servers: - url: https://api.example.com paths: /widgets: get: summary: List widgets parameters: - name: limit in: query schema: type: integer responses: "200": description: OK
Markdown output
Copy
Download
# Widget API Version: `1.0.0` ## Servers | URL | Description | | --- | --- | | https://api.example.com | - | ## Endpoints ### `GET /widgets` List widgets | Name | In | Type | Required | Description | | --- | --- | --- | --- | --- | | limit | query | integer | no | - | | Status | Description | | --- | --- | | 200 | OK |