Markdown Flashcards

1
Q

Header 1 (largest)

A

#

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Header 1 example

A

Basics

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Header 2

A

##

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Header 2 example

A

Basics

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Header 3

A

###

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Header 3 example

A

Basics

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Header 4

A

####

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Header 4 example

A

Basics

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Header 5

A

#####

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Header 5 example

A

Basics

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Header 6

A

######

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Header 6 example

A

Basics

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Header 1 alternative

A

=====

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Header 1 alternative example

A

Basics

=====

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Header 2 alternative

A

——— (hyphens)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Header 2 alternative example

A

Basics

———

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Emphasis definition

A

Italics

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Strong emphasis definition

A

Bold

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Combined emphasis definition

A

Both italics and bold

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

Emphasis

A
    • or _ _
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

Emphasis example

A

example or example

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

Strong emphasis

A

** ** or __ __

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

Strong emphasis example

A

example or __example__

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

Combined emphasis

A

_ _

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

Combined emphasis example

A

example

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

Strikethrough

A

~~ ~~

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

Strikethrough example

A

~~example~~

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

Ordered list

A

1.

29
Q

Ordered list example

A
  1. Example 1
  2. Example 2
  3. Example 3
30
Q

Unordered list

A
  • or - or +
31
Q

Unordered list example

A
  • Example 1
  • Example 2
  • Example 3
32
Q

Sublist

A

Indent 4 spaces

33
Q

Sublist example

A
  1. Example 1
  2. Example 2
    1. Sublist 1
  3. Example 3
34
Q

Inline-style link

35
Q

Inline-style link example

36
Q

Inline-style link with title

37
Q

Inline-style link with title example

38
Q

Reference style link

39
Q

Reference-style link example

40
Q

Link text reference style link

41
Q

Link text reference style link example

42
Q

Inline-style image

A
43
Q

Inline-style image example

A
44
Q

Reference-style image

A
45
Q

Reference-style image example

A
46
Q

Inline code

A

` ` (back-ticks)

47
Q

Inline code example

A

The hello world function looks like this: print(“Hello World!”)

48
Q

Block of code

A

```language
code
~~~

49
Q

Block of code example

A

```python
def divisionbytwo(x):
y = x/2
print y
~~~

50
Q

Table columns

A

|

51
Q

Table columns example

A

Input | Output | Net

52
Q

Table header

A

—- | —- | —- (at least 3 hyphens)

53
Q

Left aligned column

A

—-

54
Q

Left aligned column example

A

—- | —- | —-

55
Q

Centered column

A

:—-:

56
Q

Centered column example

A

:—-: | :—-: | :—-:

57
Q

Right aligned column

A

—-:

58
Q

Right aligned column example

A

—-: | —-: | —-:

59
Q

Full table example

A

Input | Output | Net
:—-: | :—-: | —-:
5 | 6 | 1
2 | 5 | 3

60
Q

Blockquote

A

>

61
Q

Blockquote example

A

> This is a blockquote sample paragraph

62
Q

Horizontal rule definition

A

A line that goes across a webpage horizontally

63
Q

Horizontal rule

A

—-, ***, ___ (three or more)

64
Q

Definition list

A

term
: definition 1
: definition 2

65
Q

Definition list example

A

Home
: A place you live
: A place you feel comfortable

66
Q

Completed task

A
  • [x]
67
Q

Uncompleted task

A
  • [ ]
68
Q

Task list example

A
  • [ ] Task 1
  • [x] Task 2
  • [ ] Task 3