MinePass supports "Markdown" style text formatting

The portal includes an editor with shortcuts for the most common styles...


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)

Quotes

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

Images   Need to upload an image? Imgur has a great interface.

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

Tables    Colons can be used to align columns.

| Column 1      | Column 2      | Column 3  |
| ------------- |:-------------:| ---------:|
| Col 2 is      |   centered    |     $1234 |
| Col 3 is      | right aligned |     $5678 |

Displaying code

`var example = "hello!";`

Or spanning multiple lines...

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