In textfields with several input lines you can use a simple markup language. You can use simple itemizations, you can mark text bold and you can use the font Courier.
Table 1. Implemented Markup
| Original characters | Replaced by |
|---|---|
-> |
→ |
<- |
� |
<-> |
↔ |
=> |
⇒ |
* Itemization level 1
+ Itemization level 2
~ Itemization level 3
|
|
**Bold print** |
Bold print |
'File name' |
File name |
--- |
Horizontal line |
'public int sum(int n) {
if (n <= 0) {
return n;
} else {
return n + sum(n-1);
}
}'
|
public int sum(int n) {
if (n <= 0) {
return n;
} else {
return n + sum(n-1);
}
}
|
`public int sum(int n) {
if (n <= 0) {
return n;
} else {
return n + sum(n-1);
}
}`
|
public int sum(int n) {
if (n <= 0) {
return n;
} else {
return n + sum(n-1);
}
}
|
![]() |
Important |
|---|---|
|
There will be no replacements in the program listing environment. |
![]() |
Note |
|---|---|
|
Arrows are not replaced in the task cards. |


![[Important]](common/images/admon/important.png)
![[Note]](common/images/admon/note.png)
