Characters
|
Result
|
---|---|
%n
|
Inserts a carriage return and line feed character (new line)
|
%{
|
Inserts the literal character { instead of a creating a text insertion point
|
% (not followed by ‘n’ or ‘{‘)
|
Inserts the literal character %
|
%%n
|
Inserts the literal characters %n instead of inserting a line break
|
%%{
|
Inserts the literal character % followed by a text insertion point ({).
|
Character
|
Escape ASCII value
|
---|---|
&
|
&
|
<
|
<
|
>
|
>
|
"
|
"
|
'
|
'
|
Label that includes
|
Label code
|
End result
|
---|---|---|
HTML markup for bold
|
Here is some <b>bold</b> text
|
Here is some bold text
|
A new line character (%n)
|
This is line 1 of the label.%nThis is line 2 of the label.
|
This is line 1 of the label.
This is line 2 of the label.
|
HTML markup for line break
|
This is line 1 of the label.<br/>This is line 2 of the label.
|
This is line 1 of the label.
This is line 2 of the label.
|
HTML markup for the ‘less than’ symbol
|
X < Y
|
X < Y
|
A literal percent symbol (%)
|
You said that you spent {PercentTimeSpent}% time at work.
|
You said that you spent N% time at work.
(where N is the value of {PercentTimeSpent})
|
A percent symbol as an escape character
|
Time spent at work: %%{PercentTimeSpent}
|
Time spent at work: %N
(where N is the value of {PercentTimeSpent}).
|
HTML hyperlink that opens in a new browser window
|
<a href=' https://www.unicomsi.com/about/'
rel='noopener noreferrer' target='_blank'>About Us</a> |
About Us
|
HTML hyperlink that opens an interview
|
<a href=' https://cloud.unicomsi.com/mrIWeb/mrIWeb.dll?I.Project=MUSEUM&Id=ID1'
rel='noopener noreferrer' target='_blank'>Click here to start interview</a> |
Click here to start interview
|