Markdown Guide
1 天前
6 次浏览
Tutorialmarkdownformattingguide
Markdown Quick Reference
Headers
# H1
## H2
### H3
Emphasis
- bold text
- italic text
Lists
- First item
- Second item
- Bullet point
- Another point
Links
Code
Inline code or code blocks:
function hello() {
console.log("Hello World");
}
Quotes
This is a quote
Happy writing!