Workvivo supports Markdown syntax that you can use to format content on the platform.
Emphasis
**bold**
*italics*
~~strikethrough~~
Headers
Big header
=
Medium Header
-
Note: place the symbols directly below the text
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!
Line Breaks
If you insert more than one line break in the update modal it will revert back to only one line break when you preview or post the update.
Images
Paste the below into a text box to quickly add an image. Replace the URL with the image’s public address.
![](http://www.example.com/image.jpg)
OR
![](http://www.example.com/image.png)
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);
```