Skip to content

Commit a029859

Browse files
authoredSep 1, 2022
Update markdownCheetSheet.md
1 parent 16a3201 commit a029859

File tree

1 file changed

+242
-0
lines changed

1 file changed

+242
-0
lines changed
 

‎markdownCheetSheet.md

+242
Original file line numberDiff line numberDiff line change
@@ -1 +1,243 @@
1+
Headers
2+
3+
# H1
4+
## H2
5+
### H3
6+
#### H4
7+
##### H5
8+
###### H6
9+
10+
Alternatively, for H1 and H2, an underline-ish style:
11+
12+
Alt-H1
13+
======
14+
15+
Alt-H2
16+
------
17+
18+
Emphasis
19+
20+
Emphasis, aka italics, with *asterisks* or _underscores_.
21+
22+
Strong emphasis, aka bold, with **asterisks** or __underscores__.
23+
24+
Combined emphasis with **asterisks and _underscores_**.
25+
26+
Strikethrough uses two tildes. ~~Scratch this.~~
27+
28+
Lists
29+
1. First ordered list item
30+
2. Another item
31+
⋅⋅* Unordered sub-list.
32+
1. Actual numbers don't matter, just that it's a number
33+
⋅⋅1. Ordered sub-list
34+
4. And another item.
35+
36+
⋅⋅⋅You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).
37+
38+
⋅⋅⋅To have a line break without a paragraph, you will need to use two trailing spaces.⋅⋅
39+
⋅⋅⋅Note that this line is separate, but within the same paragraph.⋅⋅
40+
⋅⋅⋅(This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)
41+
42+
* Unordered list can use asterisks
43+
- Or minuses
44+
+ Or pluses
45+
46+
47+
Links
48+
49+
There are two ways to create links.
50+
[I'm an inline-style link](https://www.google.com)
51+
52+
[I'm an inline-style link with title](https://www.google.com "Google's Homepage")
53+
54+
[I'm a reference-style link][Arbitrary case-insensitive reference text]
55+
56+
[I'm a relative reference to a repository file](../blob/master/LICENSE)
57+
58+
[You can use numbers for reference-style link definitions][1]
59+
60+
Or leave it empty and use the [link text itself].
61+
62+
URLs and URLs in angle brackets will automatically get turned into links.
63+
http://www.example.com or <http://www.example.com> and sometimes
64+
example.com (but not on Github, for example).
65+
66+
Some text to show that the reference links can follow later.
67+
68+
[arbitrary case-insensitive reference text]: https://www.mozilla.org
69+
[1]: http://slashdot.org
70+
[link text itself]: http://www.reddit.com
71+
72+
73+
Images
74+
Here's our logo (hover to see the title text):
75+
76+
Inline-style:
77+
![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 1")
78+
79+
Reference-style:
80+
![alt text][logo]
81+
82+
[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 2"
83+
84+
85+
86+
87+
Code and Syntax Highlighting
88+
89+
Code blocks are part of the Markdown spec, but syntax highlighting isn't. However, many renderers -- like Github's and Markdown Here -- support syntax highlighting. Which languages are supported and how those language names should be written will vary from renderer to renderer. Markdown Here supports highlighting for dozens of languages (and not-really-languages, like diffs and HTTP headers); to see the complete list, and how to write the language names, see the highlight.js demo page.
90+
91+
Inline `code` has `back-ticks around` it.
92+
93+
94+
Blocks of code are either fenced by lines with three back-ticks ```, or are indented with four spaces. I recommend only using the fenced code blocks -- they're easier and only they support syntax highlighting.
95+
96+
```javascript
97+
var s = "JavaScript syntax highlighting";
98+
alert(s);
99+
```
100+
101+
```python
102+
s = "Python syntax highlighting"
103+
print s
104+
```
105+
106+
```
107+
No language indicated, so no syntax highlighting.
108+
But let's throw in a <b>tag</b>.
109+
110+
var s = "JavaScript syntax highlighting";
111+
alert(s);
112+
s = "Python syntax highlighting"
113+
print s
114+
No language indicated, so no syntax highlighting in Markdown Here (varies on Github).
115+
But let's throw in a <b>tag</b>.
116+
117+
118+
Footnotes
119+
120+
Footnotes aren't part of the core Markdown spec, but they supported by GFM.
121+
122+
Here is a simple footnote[^1].
123+
124+
A footnote can also have multiple lines[^2].
125+
126+
You can also use words, to fit your writing style more closely[^note].
127+
128+
[^1]: My reference.
129+
[^2]: Every new line should be prefixed with 2 spaces.
130+
This allows you to have a footnote with multiple lines.
131+
[^note]:
132+
Named footnotes will still render with numbers instead of the text but allow easier identification and linking.
133+
This footnote also has been made with a different syntax using 4 spaces for new lines.
134+
135+
136+
137+
Tables
138+
139+
Tables aren't part of the core Markdown spec, but they are part of GFM and Markdown Here supports them. They are an easy way of adding tables to your email -- a task that would otherwise require copy-pasting from another application.
140+
141+
Colons can be used to align columns.
142+
143+
| Tables | Are | Cool |
144+
| ------------- |:-------------:| -----:|
145+
| col 3 is | right-aligned | $1600 |
146+
| col 2 is | centered | $12 |
147+
| zebra stripes | are neat | $1 |
148+
149+
There must be at least 3 dashes separating each header cell.
150+
The outer pipes (|) are optional, and you don't need to make the
151+
raw Markdown line up prettily. You can also use inline Markdown.
152+
153+
Markdown | Less | Pretty
154+
--- | --- | ---
155+
*Still* | `renders` | **nicely**
156+
1 | 2 | 3
157+
158+
159+
160+
161+
162+
163+
Blockquotes
164+
165+
> Blockquotes are very handy in email to emulate reply text.
166+
> This line is part of the same quote.
167+
168+
Quote break.
169+
170+
> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote.
171+
172+
173+
174+
175+
Inline HTML
176+
177+
You can also use raw HTML in your Markdown, and it'll mostly work pretty well.
178+
179+
<dl>
180+
<dt>Definition list</dt>
181+
<dd>Is something people use sometimes.</dd>
182+
183+
<dt>Markdown in HTML</dt>
184+
<dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
185+
</dl>
186+
187+
188+
189+
190+
191+
192+
193+
Horizontal Rule
194+
195+
Three or more...
196+
197+
---
198+
199+
Hyphens
200+
201+
***
202+
203+
Asterisks
204+
205+
___
206+
207+
Underscores
208+
209+
210+
211+
212+
Line Breaks
213+
214+
My basic recommendation for learning how line breaks work is to experiment and discover -- hit <Enter> once (i.e., insert one newline), then hit it twice (i.e., insert two newlines), see what happens. You'll soon learn to get what you want. "Markdown Toggle" is your friend.
215+
216+
Here are some things to try out:
217+
218+
Here's a line for us to start with.
219+
220+
This line is separated from the one above by two newlines, so it will be a *separate paragraph*.
221+
222+
This line is also a separate paragraph, but...
223+
This line is only separated by a single newline, so it's a separate line in the *same paragraph*.
224+
225+
226+
227+
228+
YouTube Videos
229+
230+
They can't be added directly but you can add an image with a link to the video like this:
231+
232+
<a href="http://www.youtube.com/watch?feature=player_embedded&v=YOUTUBE_VIDEO_ID_HERE
233+
" target="_blank"><img src="http://img.youtube.com/vi/YOUTUBE_VIDEO_ID_HERE/0.jpg"
234+
alt="IMAGE ALT TEXT HERE" width="240" height="180" border="10" /></a>
235+
Or, in pure Markdown, but losing the image sizing and border:
236+
237+
[![IMAGE ALT TEXT HERE](http://img.youtube.com/vi/YOUTUBE_VIDEO_ID_HERE/0.jpg)](http://www.youtube.com/watch?v=YOUTUBE_VIDEO_ID_HERE)
238+
239+
240+
241+
242+
1243

0 commit comments

Comments
 (0)
Please sign in to comment.