The code tag serves to insert Pascal code into the text. When
possible this code will be highlighted in the output. It can be used to put highlighted
Pascal code in the documentation of some identifier. It can occur inside descr or errors
tags.
Note that any text surrounding the code tag should be placed in paragraph tags p.
Example:
<code>
With Strings do
For i:=Count-1 downto 0 do
Delete(i);
</code>
|
Seealso: pre (134), p (130)