最後活躍 1738772301

Very basic Markdown

修訂 d0bed557f6d836773926517e6e0610f6c91ad6e2

markdown101.md 原始檔案

Markdown Cheat Sheet

Look down below for the source to this file.

Thanks for visiting The Markdown Guide!

This Markdown cheat sheet provides a quick overview of all the Markdown syntax elements. It can’t cover every edge case, so if you need more information about any of these elements, refer to the reference guides for basic syntax and extended syntax.

Basic Syntax

These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements.

Heading

H1

H2

H3

Bold

bold text

Italic

italicized text

Blockquote

blockquote

Ordered List

  1. First item
  2. Second item
  3. Third item

Unordered List

  • First item
  • Second item
  • Third item

Code

code

Horizontal Rule


Link

Markdown Guide

Image

alt text

Extended Syntax

These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements.

Table

Syntax Description
Header Title
Paragraph Text

Fenced Code Block

{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}

Footnote

Here's a sentence with a footnote. [^1]

[^1]: This is the footnote.

Heading ID

My Great Heading {#custom-id}

Definition List

term : definition

Strikethrough

The world is flat.

Task List

  • Write the press release
  • Update the website
  • Contact the media

Emoji

That is so funny! 😂

(See also Copying and Pasting Emoji)

markdown101.txt 原始檔案
1# Markdown Cheat Sheet
2
3Look down below for the source to this file.
4
5Thanks for visiting [The Markdown Guide](https://www.markdownguide.org)!
6
7This Markdown cheat sheet provides a quick overview of all the Markdown syntax elements. It can’t cover every edge case, so if you need more information about any of these elements, refer to the reference guides for [basic syntax](https://www.markdownguide.org/basic-syntax/) and [extended syntax](https://www.markdownguide.org/extended-syntax/).
8
9## Basic Syntax
10
11These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements.
12
13### Heading
14
15# H1
16## H2
17### H3
18
19### Bold
20
21**bold text**
22
23### Italic
24
25*italicized text*
26
27### Blockquote
28
29> blockquote
30
31### Ordered List
32
331. First item
342. Second item
353. Third item
36
37### Unordered List
38
39- First item
40- Second item
41- Third item
42
43### Code
44
45`code`
46
47### Horizontal Rule
48
49---
50
51### Link
52
53[Markdown Guide](https://www.markdownguide.org)
54
55### Image
56
57![alt text](https://www.markdownguide.org/assets/images/tux.png)
58
59## Extended Syntax
60
61These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements.
62
63### Table
64
65| Syntax | Description |
66| ----------- | ----------- |
67| Header | Title |
68| Paragraph | Text |
69
70### Fenced Code Block
71
72```
73{
74 "firstName": "John",
75 "lastName": "Smith",
76 "age": 25
77}
78```
79
80### Footnote
81
82Here's a sentence with a footnote. [^1]
83
84[^1]: This is the footnote.
85
86### Heading ID
87
88### My Great Heading {#custom-id}
89
90### Definition List
91
92term
93: definition
94
95### Strikethrough
96
97~~The world is flat.~~
98
99### Task List
100
101- [x] Write the press release
102- [ ] Update the website
103- [ ] Contact the media
104
105### Emoji
106
107That is so funny! :joy:
108
109(See also [Copying and Pasting Emoji](https://www.markdownguide.org/extended-syntax/#copying-and-pasting-emoji))
110