Markdown Reference
Markdown in 5min
Section titled “Markdown in 5min”Headers
Section titled “Headers”# H1 Header## H2 Header### H3 Header#### H4 Header##### H5 Header###### H6 HeaderText formatting
Section titled “Text formatting”**bold text***italic text****bold and italic***~~strikethrough~~`inline code`Links and images
Section titled “Links and images”[Link text](https://example.com)[Link with title](https://example.com "Hover title")Unordered:
- Item 1- Item 2 - Nested item
Ordered:
1. First item2. Second item3. Third itemBlockquotes
Section titled “Blockquotes”> This is a blockquote> Multiple lines>> Nested quoteCode blocks
Section titled “Code blocks”```javascriptfunction hello() { console.log("Hello, world!");}```Tables
Section titled “Tables”| Header 1 | Header 2 | Header 3 ||----------|----------|----------|| Row 1 | Data | Data || Row 2 | Data | Data |Horizontal rule
Section titled “Horizontal rule”---or***or___Task lists
Section titled “Task lists”- [x] Completed task- [ ] Incomplete task- [ ] Another taskEscaping characters
Section titled “Escaping characters”Use backslash to escape: \* \_ \# \`Line breaks
Section titled “Line breaks”End a line with two spacesto create a line break.
Or use a blank line for a new paragraph.