Skip to content

Latest commit

 

History

History
72 lines (46 loc) · 1.24 KB

guide.md

File metadata and controls

72 lines (46 loc) · 1.24 KB

Markdown Guide

Emphasis

**bold**
*italics*
~~strikethrough~~

Headers

# Big header
## Medium header
### Small header
#### Tiny header

Lists

* Generic list item
* Generic list item
* Generic list item

1. Numbered list item
2. Numbered list item
3. Numbered list item

Links

[Text to display](http://www.example.com)

Emojis

this is a :smile: smile emoji

this is a 😄 smile emoji

A complete list of available emojis can be found here.

Quotes

> This is a quote.
> It can span multiple lines!

Images

![](http://www.example.com/image.jpg)

Need to upload images? Simply paste the image, and the link will be autogenerated.

Tables

| Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| John     | Doe      | Male     |
| Mary     | Smith    | Female   |

Or without aligning the columns...

| Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| John | Doe | Male |
| Mary | Smith | Female |

Displaying code

`var example = "hello!";`

Or spanning multiple lines...

```js
var example = "hello!";
alert(example);
```