Skip to content

Latest commit

 

History

History
57 lines (44 loc) · 1.95 KB

markdown-cheatsheet.md

File metadata and controls

57 lines (44 loc) · 1.95 KB

Markdown basics

Headings

Code Results
# Heading 1

Heading1

## Heading 2

Heading2

### Heading 3

Heading3

#### Heading 4

Heading4

##### Heading 5
Heading5
###### Heading 6
Heading6

Text formating

Code Results
**Bold** Bold
`Italic Italic
~~Striketrough~~ Striketrough
[link to localhost](https://localhost) link to localhost
![image alt](https://media.giphy.com/media/Byp2MtxE5Tyla/giphy.gif) image alt

Lists

1. this is
2. an
3. ordered list
  1. this is
  2. an
  3. ordered list
* this is
* an
* unordered list
  • this is
  • an
  • unordered list

Tables

| Column 1          |      Column 2       |           Column 3 |
| :---------------- | :-----------------: | -----------------: |
| Left aligned text | Center aligned text | Right aligned text |
Column 1 Column 2 Column 3
Left aligned text Center aligned text Right aligned text