You can use Markdown to style your links, lists, headers, and other styles in your request descriptions and comments.
This article covers where and how to use Markdown in Pendo Feedback. For information on using Markdown with Pendo Guides, see Markdown Syntax for Guide Text Editing instead.
Headings
Syntax
# Header1
## Header2
### Header3
#### Header4
##### Header5
###### Header6
Bold syntax
**This text will be bold**
Italic and bold syntax together
**Everyone *must* attend the meeting at 5 o'clock today.**
Result
Links
Syntax
[This link is great!](https://support.pendo.io)
Result
Ordered lists
Syntax
1. Item 1
2. Item 2
3. Item 3
OR
1. Item 1
1. Item 2
1. Item 3
Result
Unordered lists
Syntax
- Item
- Item
- Item
* Item
* Item
* Item
Result
Here's an idea: why don't we take `SuperiorProject` and turn it into `**Reasonable**Project`.
Result
Code block
Syntax
```
x = 0
x = 2 + 2
what is x
```
Result