Markdown
A plain-text format for writing structured documents.
Definition
Markdown is a lightweight markup language that uses simple symbols to format text. It was designed to be readable as plain text while also converting easily to HTML.
Why Markdown for AI Work
Markdown is the native language of AI workflows for several reasons:
- Plain text — Works everywhere, forever. No proprietary formats.
- AI-friendly — Most AI models read and write Markdown by default.
- Version control — Unlike
.docxfiles, Markdown works perfectly with Git. - Easy to learn — You can start in 5 minutes.
Quick Reference
# Heading 1
## Heading 2
### Heading 3
**bold** and *italic*
- Bullet list
- Another item
1. Numbered list
2. Second item
[Link text](https://example.com)
> Blockquote
`inline code`
Renders as:
Heading 1
Heading 2
Heading 3
bold and italic
- Bullet list
- Another item
- Numbered list
- Second item
Blockquote
inline code
Resources
- Markdown Guide — Comprehensive tutorial
- Markdown Cheat Sheet — Quick reference
Related Terms
- Prompt — Prompts are often written in Markdown
See this term in context: Task 1: Grammar Check