Learn how to create beautiful, well-structured documentation with Markdown syntax, special callouts, and file organization.
_) → Spaces# Heading 1
## Heading 2
### Heading 3**Bold text**
*Italic text*
~~Strikethrough~~
`Inline code`Unordered:
- Item 1
- Item 2
- Nested item
- Item 3Ordered:
1. First item
2. Second item
3. Third itemUse triple backticks with language specification:
```javascript
function hello() {
console.log("Hello World!");
}
```[Link text](./Other_File.md)
[External link](https://example.com)
/// TYPE | Optional Title
Your content here. You can use **markdown** inside!
////// tip | Pro Tip
Content here...
///Aliases: tip, success, best practice
/// info | Good to Know
Content here...
///Aliases: info, note
/// warning | Be Careful
Content here...
///Aliases: warning
/// danger | Critical
Content here...
///Aliases: danger, error, bug
For simple documentation without images:
.md filedocumentation.zip
├── Introduction.md ← Entry point
├── Getting_Started.md
├── Advanced_Topics.md
├── images/
│ ├── screenshot1.png
│ ├── diagram.jpg
│ └── logo.svg
└── examples/
├── Example_1.md
└── Example_2.mdzip -r documentation.zip .login-screen.png not img001.pngimages/ folder