最後活躍 1738772301

Very basic Markdown

修訂 8a2e632bad7f6a7e54c43a8fce14409be9a028f3

markdown101.md 原始檔案

Markdown Cheat Sheet

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