Thanks a lot for the explanation!<br>One last off-topic question:<br><br>Is there a predefined way to enter HTML directly, instead of constantly having to define own tags to do this for you? For example, I simply want to put this in a page:
<br>&lt;a onclick=&quot;showNews(&#39;entry&#39;, &#39;morenews&#39;);&quot;&gt;<br>But you can&#39;t simply do that with default links. So I&#39;ll have to do something like<br>(:onclicklink showNews(&#39;entry&#39;, &#39;morenews&#39;):) 
<br>and translate it in a cookbook script with Markup() to the &#39;real&#39; link.<br><br><br>You&#39;ve all been realy helpful! :-)<br>- Wouter<br><br><br><div><span class="gmail_quote">On 1/15/07, <b class="gmail_sendername">
Patrick R. Michaud</b> &lt;<a href="mailto:pmichaud@pobox.com">pmichaud@pobox.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
On Mon, Jan 15, 2007 at 08:04:16PM +0100, Wouter Groeneveld wrote:<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;Thanks, that seems to work :-)<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;Although, what exactly is &quot; &lt;:vspace&gt;&quot; suddenly? I first thought it had<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;something to do with the lack of styles but I tried temporary including
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;the header and it doesn&#39;t go away. I can simply filter it of course, but<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;I&#39;m rather curious.<br><br>&lt;:vspace&gt; is how PmWiki marks &quot;true&quot; blank lines in the original<br>markup (for paragraph spacing) versus lines that &quot;become blank&quot;
<br>in the process of handling other markup rules.<br><br>For example, given the markup<br><br>&nbsp;&nbsp;&nbsp;&nbsp;Here is some text<br>&nbsp;&nbsp;&nbsp;&nbsp;(:comment&nbsp;&nbsp;xyz:)<br>&nbsp;&nbsp;&nbsp;&nbsp;and some more text<br><br>&nbsp;&nbsp;&nbsp;&nbsp;Here is a new paragraph.<br><br>The blank line is used to indicate the end of a paragraph
<br>that reads &quot;Here is some text and some more text&quot;.&nbsp;&nbsp;But we<br>have to be careful that when PmWiki processes the (:comment:)<br>directive (i.e., by removing it) that the remaining markup<br>rules don&#39;t think that the resulting blank line is an
<br>end-of-paragraph marker.<br><br>So, when PmWiki first reads markup for processing, it replaces any<br>truly blank lines (i.e., empty lines or lines with only whitespace)<br>with temporary &quot;&lt;:vspace&gt;&quot; markers to indicate where the blank
<br>lines were in the original markup.&nbsp;&nbsp;It then uses these &lt;:vspace&gt;<br>markers to determine where the author intended to have vertical<br>space, instead of just looking for blank lines (some of which<br>may simply be artifacts of other markups being processed).
<br><br>Pm<br><br></blockquote></div><br>