Skip to content

Markdown

Markdown is plain text formatting that renders as HTML. It is widely supported across development, documentation, and communication platforms.

CategoryPlatforms
DevelopmentGitHub, GitLab, Bitbucket, VS Code, Jupyter
DocumentationAstro Starlight, Docusaurus, MkDocs, GitBook, Hugo
Note TakingObsidian, Notion, Typora, Logseq
CommunicationSlack, Discord, Reddit, Stack Overflow
AI / AgentsChatGPT, Claude, Copilot, OpenCode

Paragraphs are created by separating text with a blank line. A single line break does not create a new paragraph.

This is the first paragraph.
This is the second paragraph.

This is the first paragraph.

This is the second paragraph.

SyntaxOutput
# Heading 1

Heading 1

## Heading 2

Heading 2

### Heading 3

Heading 3

#### Heading 4

Heading 4

##### Heading 5
Heading 5
###### Heading 6
Heading 6
SyntaxOutput
**bold text**bold text
*italic text*italic text
SyntaxNotes
- itemDash prefix
* itemAsterisk prefix, same result
- itemTwo spaces to nest
- Item one
- Item two
- Nested item
  • Item one
  • Item two
    • Nested item
SyntaxOutputNotes
`inline code`inline codeInline code span
```language / ```Can’t render in tableFenced block, language optional

For fenced code blocks, wrap content in triple backticks with an optional language for syntax highlighting:

```js
console.log("hello world");
```
console.log("hello world");

Columns are separated by | pipes. The second row is the separator and must have at least three dashes per column. Alignment is optional.

SyntaxNotes
| col | col |Header row
| --- | --- |Separator row (required)
| :---: |Center aligned
| ---: |Right aligned

Example:

| Language | Type | Use Case |
| ---------- | ----------- | -------------------- |
| Python | Interpreted | Scripting, ML, data |
| Rust | Compiled | Systems, performance |
| JavaScript | Interpreted | Web, Node.js |
| Go | Compiled | APIs, CLI tools |
LanguageTypeUse Case
PythonInterpretedScripting, ML, data
RustCompiledSystems, performance
JavaScriptInterpretedWeb, Node.js
GoCompiledAPIs, CLI tools