# markdown-sample

## Headings

## Level 1 heading

### Level 2 heading

#### Level 3 heading

**Level 4 heading**

**Level 5 heading**

**Level 6 heading**

## Emphasising Text

**This is bold text**

*This text is italicized*

~~This was mistaken text~~

**This text is&#x20;*****extremely*****&#x20;important**

***All this text is important***

## Quotation

In the words of Abraham Lincoln:

> Pardon my French

## Code

Use `git status` to list all new or modified files that haven't yet been committed.

Some basic Git commands are:

```
git status
git add
git commit
```

## Links

Have you taken a look at [GitHub Pages](https://pages.github.com/) yet?

## Lists

### Unordered List

* Red
* Green
  * Olive
* Blue
  * Cyan
  * Navy

### Ordered List

1. Red
2. Green
   1. Olive
3. Blue
   1. Cyan
   2. Navy

### Mixed List

1. Red
2. Green
   * Olive
3. Blue
   * Cyan
   * Navy

### Check List

* [x] Red
* [ ] Green
* [ ] Blue
* [ ] (Optional) Orange

## Emoji

:EMOJICODE:

GitHub syntax can also support emoji :thumbsup:

## Escaping Content

You should also be able to \*escape\* Markdown syntax by utilising back slashes.

## HTML

Being Markdown based html should also be supported.

## Table Support

| Command left-aligned | Command center-aligned | Command right-aligned | Description                                        |
| -------------------- | :--------------------: | --------------------: | -------------------------------------------------- |
| `git status`         |      `git status`      |          `git status` | List all *new or modified* files                   |
| `git diff`           |       `git diff`       |            `git diff` | Show file differences that **haven't been** staged |
