返回首页

Markdown Guide

1 天前
6 次浏览
Tutorial
markdownformattingguide

Markdown Quick Reference

Headers

# H1
## H2
### H3

Emphasis

  • bold text
  • italic text

Lists

  1. First item
  2. Second item
  • Bullet point
  • Another point

Links

Link text

Code

Inline code or code blocks:

function hello() {
  console.log("Hello World");
}

Quotes

This is a quote

Happy writing!