Options officially supported by PractiTest Markdown
Markdown is a lightweight markup language with plain text formatting syntax for styling description and steps fields in PractiTest.
Options that you can see within the toolbar are officially supported.
In addition to them, you can use the options below:
Headers
# This is an <h1> tag
## This is an <h2> tag
### This is an <h3> tag
#### This is an <h4> tag
##### This is an <h5> tag
###### This is an <h6> tag
Emphasis
You can easily make text **bold** or *italic* by using Markdown syntax.
Text highlighting
<font color="red"> this will be in red </font>
* Only standardized double quotes are supported for this option
Lists
Generic
* first item
* second item
Numbered
1. First item
2. Second item
3. Third item
Hyperlinks
https://practitest.com – any URL will be automatically converted to a link
[PractiTest](https://practitest.com)
Images
Inline-style:
![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png)
Reference-style:
![alt text][logo]
[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png
Blockquotes
As Yogi Berra said:
> You can see a lot
> by just looking.
Inline code
I think you should use an
`<addr>` element here instead.
Tables
| col1 | col2 | col3 |
| --- | --- | --- |
|val1 | val2 | val3 |