introduction:signatures
Signatures create different types of blocks. Here are some examples.
| Xilize markup | browser rendering |
|
This is a normal paragraph with no signature. p. This has the explicit paragraph signature. bq. A block quote. pre. Preformatted text styled with the default stylesheet. h3. level-3 heading bcx. Used to display coding examples: if( finished & checked ) isLarge = count > 1000; tag = "<html>"; |
This is a normal paragraph with no signature. This has the explicit paragraph signature.
Preformatted text styled with the default stylesheet. level-3 heading
|
XHTML generated
<p>This is a normal paragraph with no signature.</p>
<p>This has the explicit paragraph signature.</p>
<blockquote>
<p>A block quote.</p>
</blockquote>
<pre>Preformatted text
styled with the default
stylesheet.</pre>
<h3 id="id1">level-3 heading</h3>
<pre><code>Used to display coding examples:
if( finished & checked )
isLarge = count > 1000;
tag = "<html>";</code></pre>