How do I format my content?

How do I format my content?

Productstash uses markdown for the majority of its content formatting:

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%29/

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

| 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...

```
var example = "hello!";
alert(example);
```
    • Related Articles

    • How do I add images to my content?

      Productstash uses a form of markdown editing which supports embedding image URLs: ![](http://www.example.com/image.jpg) When your content renders all image URLs will be displayed as images. Need to upload images? Check out imgur.
    • How do I add videos to my content?

      How do I add videos? Method 1 - Insert videos via direct link The easiest way to include videos in your content is by inserting them via a direct link. Simply click on the video icon and then paste in the video's URL. Once added, this will render the ...
    • How to make my Roadmap iFrame full height?

      Unfortunately there is no "easy" way to dynamically set the iFrame's height based on its content, however, there is a useful solution which is what we have implemented on our own website here https://www.productstash.io/our-roadmap This solution is ...
    • Objectives, Categories and Tags

      Roadmap Objectives Roadmap Objectives are typically used as roadmap themes, or goals, and are used to group similar cards together - these could be used as competencies in your case perhaps. These types of roadmaps focus on goals and objectives and ...