Markdown Flashcards

Learn to create documentation using Markdown

1
Q

Create a heading (level 1, 2, 3, 4, 5, or 6)

A

Start the line with 1 to 6 ‘#’ characters to represent headings level 1 to 6

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

Create a paragraph

A

Start the paragraph with a blank line

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

Force a line break

A

End a line with two spaces

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

Create italic words

A

Surround the text with * or _.

Example: Both of the words zig and zag are italicized.

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

Create bold words

A

Surround the text with ** or __

Example: Both of the words zig and __zag__ are bold.

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

Create underlined words

A

You cannot.

Don’t use underlined words since they will look like links.

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

Create strike-through words

A

Surround the text with ~~

Example: Both of the words ~~zig~~ and ~~zag~~ are crossed out.

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

create a numbered (ordered) list

A

Type the numbers followed by a period at the start of the line

You can use 1. on every line to make editing simpler. The numbers will be updated correctly on the HTML result.

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

Create a bulletted (unordered) list

A

Start the line with dash (-)

Plus (+) and asterist (*) work the same

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

Create an outline (or nested lists)

A

Indent sub-list lines with three spaces (or more)

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

Create a link

A

Place the link’s visible text in square brackets immediately followed by the URL in parentheses.

Example: Google

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

Specify pop-up text for a link

A

Place the pop-up text in quotes after the link’s URL.

Example: Google

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

Show an image

A

Place the image URL in parentheses after an exclamation point and square brackets.

Example:

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

Show a block of code

A

Put 3 backticks on a line before and after the code.

Alternatively, indent the block with four spaces

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

Apply syntax coloring to a block of code

A

Put the name of the language after the 3 backticks before the block of code.

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

Create words with a fixed-width font

A

Surround the text with single backticks ( ` ).

Example: The term TRUE represents a 1.

17
Q

Create a horizontal dividing line on the page

A

Three underscores on a single line will render as a horizontal rule.

Alternatively, you can use three asterisks or three dashes.

18
Q

Show a URL as a link

A

Surround the URL with angle brackets.

Example:

19
Q

Show a character that normally would be part of a rendering command?

A

You can escape a character with a backslash character.

20
Q

Create a table

A

Separate row cell contents with vertical bars ( | )

Separate rows with new lines

21
Q

Create a row heading on a table

A

Create a heading seperator row that contains dashes in each cell.

22
Q

Align table columns (left, center, or right)

A

Use colons in the heading separator row to align columns.
Left align with :–
Center align with :–:
Right align with –:

23
Q

Insert comments that are not rendered

A

Markdown does not support comments