Advanced Syntax
Blockquotes
Section titled “Blockquotes”> This is a quote>> Nested quote
Rendering:
This is a quote
Nested quote
Code blocks
Section titled “Code blocks”Without specified language
Section titled “Without specified language”\`\`\`Plain text\`\`\`
With language (syntax highlighting)
Section titled “With language (syntax highlighting)”\`\`\`jsconsole.log("Hello World");\`\`\`
Rendering:
console.log("Hello World");
Simple link
Section titled “Simple link”[Google](https://google.com)
Link with title (on hover)
Section titled “Link with title (on hover)”[Google](https://google.com "Search engine")
Images
Section titled “Images”
Rendering:
Tables
Section titled “Tables”| Name | Age ||-------|-----|| Alice | 24 || Bob | 30 |
Rendering:
Name | Age |
---|---|
Alice | 24 |
Bob | 30 |
Task Lists
Section titled “Task Lists”- [ ] Task to do- [x] Completed task
Rendering:
- Task to do
- Completed task