Markdown Flashcards
1
Q
Header 1 (largest)
A
#
2
Q
Header 1 example
A
Basics
3
Q
Header 2
A
##
4
Q
Header 2 example
A
Basics
5
Q
Header 3
A
###
6
Q
Header 3 example
A
Basics
7
Q
Header 4
A
####
8
Q
Header 4 example
A
Basics
9
Q
Header 5
A
#####
10
Q
Header 5 example
A
Basics
11
Q
Header 6
A
######
12
Q
Header 6 example
A
Basics
13
Q
Header 1 alternative
A
=====
14
Q
Header 1 alternative example
A
Basics
=====
15
Q
Header 2 alternative
A
——— (hyphens)
16
Q
Header 2 alternative example
A
Basics
———
17
Q
Emphasis definition
A
Italics
18
Q
Strong emphasis definition
A
Bold
19
Q
Combined emphasis definition
A
Both italics and bold
20
Q
Emphasis
A
- or _ _
21
Q
Emphasis example
A
example or example
22
Q
Strong emphasis
A
** ** or __ __
23
Q
Strong emphasis example
A
example or __example__
24
Q
Combined emphasis
A
_ _
25
Combined emphasis example
**_example_**
26
Strikethrough
~~ ~~
27
Strikethrough example
~~example~~
28
Ordered list
1.
29
Ordered list example
1. Example 1
2. Example 2
3. Example 3
30
Unordered list
* or - or +
31
Unordered list example
* Example 1
* Example 2
* Example 3
32
Sublist
Indent 4 spaces
33
Sublist example
1. Example 1
2. Example 2
1. Sublist 1
3. Example 3
34
Inline-style link
[link text](link)
35
Inline-style link example
[this link](http://www.google.com)
36
Inline-style link with title
[link text](link “title”)
37
Inline-style link with title example
[this link](https://www.google.com “Google’s Homepage”)
38
Reference style link
[link text][1]
[1]: link
39
Reference-style link example
[this link][1]
[1]: https://www.google.com
40
Link text reference style link
[link text]
[link text]: link
41
Link text reference style link example
[this link]
[this link]: https://www.google.com
42
Inline-style image

43
Inline-style image example

44
Reference-style image
![alt text][reference]
[reference]: link
45
Reference-style image example
![The statue of liberty][1]
[1]: https://picsum.photos/200
46
Inline code
` ` (back-ticks)
47
Inline code example
The hello world function looks like this: `print(“Hello World!”)`
48
Block of code
```language
code
```
49
Block of code example
```python
def divisionbytwo(x):
y = x/2
print y
```
50
Table columns
| |
51
Table columns example
Input | Output | Net
52
Table header
—- | —- | —- (at least 3 hyphens)
53
Left aligned column
—-
54
Left aligned column example
—- | —- | —-
55
Centered column
:—-:
56
Centered column example
:—-: | :—-: | :—-:
57
Right aligned column
—-:
58
Right aligned column example
—-: | —-: | —-:
59
Full table example
Input | Output | Net
:—-: | :—-: | —-:
5 | 6 | 1
2 | 5 | 3
60
Blockquote
>
61
Blockquote example
> This is a blockquote sample paragraph
62
Horizontal rule definition
A line that goes across a webpage horizontally
63
Horizontal rule
—-, ***, ___ (three or more)
64
Definition list
term
: definition 1
: definition 2
65
Definition list example
Home
: A place you live
: A place you feel comfortable
66
Completed task
- [x]
67
Uncompleted task
- [ ]
68
Task list example
- [ ] Task 1
- [x] Task 2
- [ ] Task 3