Story details formatting options using Markdown
# Heading1
## Heading2
### Heading3
Alternative H1
==============
Alternative H2
--------------
# Emphasis
*Italics* or _Italics_
**Bold** or __Bold__
# Strikethrough
~~Mistaken text.~~
# Blockquote
> This is a blockquote with two paragraphs.
>
> Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse
> id sem consectetuer libero luctus adipiscing.
# Nested blockquote
> This is the first level of quoting.
>
> > This is nested blockquote.
>
> Back to the first level.
# Unordered list
* Red
* Green
* Blue
or
- Red
- Green
- Blue
or
+ Red
+ Green
+ Blue
# Ordered list
1. Bird
1. Parakeet
1. Parrot
1. Chicken
1. Dog
1. Cat
# Definition list
Term 1
: Definition 1
Term 2
: This definition has a code block.
code block
# Footnotes
Here is a footnote[^footnote].
[^footnote]: Here is the *text* of the **footnote**.
# Code
Inline `code` has `back-ticks around` it.
Fenced code block
```javascript
var s = "JavaScript syntax highlighting";
alert(s);
```
See [Highlight.js](https://highlightjs.org/static/demo/) for the supported languages.
# Horizontal line
***
# Link
Visit [StoriesOnBoard](http://www.storiesonboard.com)
or
http://www.storiesonboard.com
# Images
Simple

With title

Referenced
![Alt text][id]
[id]: http://www.flexdevelopers.com/b/uploaded_images/mytube.gif "Optional title attribute"
You can get markup for the images attached to the cards by hovering over the image and clicking on "get markup".
# Tables
Right aligned Value, centered Qty
| Item | Value | Qty |
| -------- | -----:|:---: |
| Computer | $1600 | 5 |
| Phone | $12 | 12 |
| Pipe | $1 | 234 |
The following image shows the result of the formated text above
