These are samples of basic Markdown notation that can be used in Questetra.
Markdown is a lightweight markup language. You can express headings, lists, links, and emphasised text using simple combinations of symbols and characters—for example, # followed by (a space) at the start of a line will be converted to a heading.
In Questetra, you can use Markdown in various functions, including String-type (Markdown) data items. These functions display sentences written with Markdown notation in a visually easy-to-read format. You can also preview the results as you type.
This reference explains basic Markdown notation; for full information on the notation available in Questetra, please see R1021: Markdown Samples (for experts).
Basic Markdown Notations
- Heading
- Paragraph
- List (unordered)
- List (ordered)
- Bold
- Strike-through
- Quotation
- Link
- Image Display
- Escape
Heading
- Headings in Markdown are created using
#. The more#you use, the lower the heading level. -
Markdown Sample
# Heading Level 1
## Heading Level 2
### Heading Level 3 -
Edit/Preview Screen
Paragraph
- To create a new paragraph, insert a blank line.
-
Markdown Sample
This is the first paragraph.
This is the second paragraph. -
Edit/Preview Screen
List (unordered)
- To create an unordered list, write
-/*/+at the beginning of the line, followed by a space, and then write the items. To move down a level, add two spaces before-/*/+. -
Markdown Sample
- Item
- Sub-item
- Sub-sub-item
- Sub-sub-item
- Sub-item
- Sub-sub-item
- Item
- Sub-item -
Edit/Preview Screen
List (ordered)
- To create an ordered list, write a number followed by
., followed by(a space), and then the item. When displayed, the numbers will automatically be incremented. To create a lower level, add three spaces before the number. If you change the number of the first item in the same level, it will start from that number when displayed. - You can also mix ordered and unordered lists.
-
Markdown Sample
1. Item
1. Sub-item
1. sub-sub-item
1. sub-sub-item
1. Sub-item
1. Sub-item
1. item
5. sub-item
* sub-sub-item
* sub-sub-item
1. sub-item -
Edit/Preview Screen
Bold
- To make text bold, enclose the text in
**or__. -
Markdown Sample
**Both of these methods** will __make the text bold__.
-
Edit/Preview Screen
Strike-through
- To add strike-through to text, enclose it in
~~. -
Markdown Sample
~~This text is struck through~~
-
Edit/Preview Screen
Quotation
- To create a quotation, use
>at the start of a line. -
Markdown Sample
> This is a quotation.
If there is no blank line, it will continue from the previous line.
>
> It is also possible to create a paragraph within a quotation.
> If you insert a blank line, it will become a separate quotation. -
Edit/Preview Screen
Link
- To create a link, enclose the link destination URL in
<>. Alternatively, enclose the link text in[], and enclose the link destination URL in(). -
Markdown Sample
<https://questetra.com/ja/>
[Questetra Support Site](https://support.questetra.com/ja/) -
Edit/Preview Screen
-
Note
In Markdown for Questetra, it is not supported to specify that a link always opens in a new tab. If you want a link to always open in a new tab, describe the link using
<a>tag with thetarget= "_blank"attribute.Example:
<a href="https://example.com/regulation-2025-01.pdf" target="_blank">Terms of Use (2025 Revised Edition)</a>
Image Display
- To display images, please use the
<img>tag. Please insert blank lines before and after the tag. -
Markdown Sample
<img src="https://questetra.com/wp-content/uploads/2024/01/cropped-favicon-1.png" width="25%">
-
Edit/Preview Screen
Escape
- To display Markdown special characters as-is, write
\before the special character. -
Markdown Sample
\*This text will not be italicized\*
\# This text will not be a heading -
Edit/Preview Screen
Comments
0 comments
Article is closed for comments.