Many text fields in QReserve support a subset of the Markdown formatting language to add styles and structure to your text. Look for the Markdown Enabled indicator in the bottom right corner of a text field to know if it is available.
Markdown Overview
Markdown is a formatting language that allows you to change the underlying HTML code of text without having to write any actual HTML code. The implementation of Markdown in QReserve is restricted to a subset of the full language to ensure security and reliability; however, it still provides a range of options for communicating information in a clear and structured manner.
Block Quotes
Use the > symbol to isolate a section of text into a blockquote.
Markdown Code
> This text will
> show up in a blockquote.
This is normal text.
Rendered Output
This text will show up in a blockquote.This is normal text.
Bold and Italic Text
Encase text in single asterisk * for italic text, or double, ** for bold text.
Markdown Code
Rendered Output
Headers
Headers are rendered as larger fonts as the HTML <H1> through <H6> tags and are specified with 1 through 6 leading # symbols.
Markdown Code
##### Header 5
#### Header 4
### Header 3
## Header 2
# Header 1
Rendered Output
Header 6
Header 5
Header 4
Header 3
Header 2
Header 1
Ordered and Unordered Lists
A list can be defined by separating the first and last items with a blank line and then an unordered starts each item with an asterisk while and ordered list starts each item with a number followed by a period (e.g. 1. 2. 3.). A sub-list can be created by indenting a list item by exactly 4 spaces.
Markdown Code
* Item 1
* Item 2
* Indented item 1
* Indented item 2
* Item 3
While here is an ordered list:
1. Ordered Item 1
2. Ordered Item 2
3. Ordered Item 3
Rendered Output
- Item 1
- Item 2
- Indented item 1
- Indented item 2
- Item 3
While here is an ordered list:
- Ordered Item 1
- Ordered Item 2
- Ordered Item 3
Links to Websites
A website link can be entered using link text
.
Markdown Code
Rendered Output
Images
Images can be inserted by clicking the picture icon in the toolbar and uploading the image. The required Markdown code will automatically be inserted with a blank area to add an image description. The URL for the image is automatically generated and cannot be changed. Only images uploaded through this process will work within the application. Accepted image formats include JPEG and PNG.
Markdown Code
![Description Text](https://api.../f/..../myimage.png) for more information.
Rendered Output
Horizontal Rulers
You can insert a horizontal ruler, or line, using a series of asterisks on their own line.
Markdown Code
*****
This is some more text.
Rendered Output
This is some more text.
Highlighted or Marked Text
Encase text in double equal signs to highlight the text.
Markdown Code
Rendered Output
Fixed Width Font
You can use a fixed width typewriter font by enclosing text with back ticks.
Markdown Code
Rendered Output
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article