×
Markdown Writing Guide
- Headings: Use # for headings. # Heading 1, ## Heading 2, etc.
Example: # My Heading
- Paragraphs: Separate paragraphs with blank lines.
Example: First paragraph.
Second paragraph.
- Text Formatting:
- *Italic* or _Italic_
Example: *italic text*
- **Bold** or __Bold__
Example: **bold text**
- ~~Strikethrough~~
Example: ~~strikethrough text~~
- Lists:
- Unordered: - Item or * Item
Example: - Item 1
- Ordered: 1. Item
Example: 1. First item
- Nested lists with indentation
Example: - Item 1
- Subitem
- Links: [Link Text](URL)
Example: [Google](https://google.com)
- Images: 
Example: 
- Code:
- Inline: `code`
Example: `console.log('hello')`
- Blocks: ```language
code
```
Example: ```javascript
console.log('hello');
```
- Blockquotes: > Quote text
Example: > This is a quote
- Horizontal Rules: --- or ***
Example: ---
- Tables: | Header1 | Header2 |
|---------|---------|
| Cell1 | Cell2 |
Example: | Name | Age |
|------|-----|
| John | 30 |
- Escaping: Use \ to escape special characters like \* or \[
Example: \*not italic\*