Dernière activité 1738772301

Very basic Markdown

kristofer's Avatar kristofer a révisé ce gist 1738772300. Aller à la révision

2 files changed, 4 insertions

markdown101.md

@@ -1,5 +1,7 @@
1 1 # Markdown Cheat Sheet
2 2
3 + Look down below for the source to this file.
4 +
3 5 Thanks for visiting [The Markdown Guide](https://www.markdownguide.org)!
4 6
5 7 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](https://www.markdownguide.org/basic-syntax/) and [extended syntax](https://www.markdownguide.org/extended-syntax/).

markdown101.txt

@@ -1,5 +1,7 @@
1 1 # Markdown Cheat Sheet
2 2
3 + Look down below for the source to this file.
4 +
3 5 Thanks for visiting [The Markdown Guide](https://www.markdownguide.org)!
4 6
5 7 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](https://www.markdownguide.org/basic-syntax/) and [extended syntax](https://www.markdownguide.org/extended-syntax/).

kristofer's Avatar kristofer a révisé ce gist 1738772255. Aller à la révision

1 file changed, 107 insertions

markdown101.txt(fichier créé)

@@ -0,0 +1,107 @@
1 + # Markdown Cheat Sheet
2 +
3 + Thanks for visiting [The Markdown Guide](https://www.markdownguide.org)!
4 +
5 + 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](https://www.markdownguide.org/basic-syntax/) and [extended syntax](https://www.markdownguide.org/extended-syntax/).
6 +
7 + ## Basic Syntax
8 +
9 + These 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 +
31 + 1. First item
32 + 2. Second item
33 + 3. 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 +
59 + These 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 +
80 + Here'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 +
90 + term
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 +
105 + That is so funny! :joy:
106 +
107 + (See also [Copying and Pasting Emoji](https://www.markdownguide.org/extended-syntax/#copying-and-pasting-emoji))

kristofer's Avatar kristofer a révisé ce gist 1738772195. Aller à la révision

1 file changed, 12 deletions

markdown101.md

@@ -105,15 +105,3 @@ term
105 105 That is so funny! :joy:
106 106
107 107 (See also [Copying and Pasting Emoji](https://www.markdownguide.org/extended-syntax/#copying-and-pasting-emoji))
108 -
109 - ### Highlight
110 -
111 - I need to highlight these ==very important words==.
112 -
113 - ### Subscript
114 -
115 - H~2~O
116 -
117 - ### Superscript
118 -
119 - X^2^

kristofer's Avatar kristofer a révisé ce gist 1738772132. Aller à la révision

1 file changed, 119 insertions

markdown101.md(fichier créé)

@@ -0,0 +1,119 @@
1 + # Markdown Cheat Sheet
2 +
3 + Thanks for visiting [The Markdown Guide](https://www.markdownguide.org)!
4 +
5 + 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](https://www.markdownguide.org/basic-syntax/) and [extended syntax](https://www.markdownguide.org/extended-syntax/).
6 +
7 + ## Basic Syntax
8 +
9 + These 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 +
31 + 1. First item
32 + 2. Second item
33 + 3. 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 +
59 + These 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 +
80 + Here'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 +
90 + term
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 +
105 + That is so funny! :joy:
106 +
107 + (See also [Copying and Pasting Emoji](https://www.markdownguide.org/extended-syntax/#copying-and-pasting-emoji))
108 +
109 + ### Highlight
110 +
111 + I need to highlight these ==very important words==.
112 +
113 + ### Subscript
114 +
115 + H~2~O
116 +
117 + ### Superscript
118 +
119 + X^2^
Plus récent Plus ancien