<h1>Home Page</h1>
<p>We want to see how well this translates text.</p>
<div class="method-synopsis">
<span class="access">public</span>
<span class="return">string</span>
<span class="method">methodName</span> (
)
</div>
<p>Especially we want for <a href="/wiki/read/Wiki_links">wiki links</a> to work,
and for <span>HTML</span> to be
<strong>properly escaped</strong>.</p>
<pre><code><p>this should show up literally</p>
</code>
</pre>
<p>And this should not.</p>
<h2>Check <span>HTML</span> Escaping</h2>
<p>Compressed lists:</p>
<ul>
<li>compressed list</li>
<li>do we get <span>HTML</span> escaping in this
list?</li>
<li>because we should :-(</li>
</ul>
<p>Loose lists:</p>
<ul>
<li>
<p>loose list</p>
</li>
<li>
<p>do we get <span>HTML</span> escaping in this
list?</p>
</li>
<li>
<p>because we should</p>
</li>
</ul>
<p>Definition lists:</p>
<dl>
<dt>term</dt>
<dd><span>definition</span></dd>
</dl>
<p>Block quotes:</p>
<blockquote>
<p>do we get <span>HTML</span> escaping inside block
quotes?</p>
</blockquote>
<p>Tables:</p>
<table>
<thead>
<tr>
<th>Header <span>HTML</span></th>
<th><strong>Strong</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td>cell with <em>em</em> <span>HTML</span></td>
<td>no html</td>
</tr>
</tbody>
</table>