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><a onclick="showNews('entry', 'morenews');"><br>But you can't simply do that with default links. So I'll have to do something like<br>(:onclicklink showNews('entry', 'morenews'):)
<br>and translate it in a cookbook script with Markup() to the 'real' link.<br><br><br>You'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> <<a href="mailto:pmichaud@pobox.com">pmichaud@pobox.com</a>> 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>> Thanks, that seems to work :-)<br>> Although, what exactly is " <:vspace>" suddenly? I first thought it had<br>> something to do with the lack of styles but I tried temporary including
<br>> the header and it doesn't go away. I can simply filter it of course, but<br>> I'm rather curious.<br><br><:vspace> is how PmWiki marks "true" blank lines in the original<br>markup (for paragraph spacing) versus lines that "become blank"
<br>in the process of handling other markup rules.<br><br>For example, given the markup<br><br> Here is some text<br> (:comment xyz:)<br> and some more text<br><br> Here is a new paragraph.<br><br>The blank line is used to indicate the end of a paragraph
<br>that reads "Here is some text and some more text". 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'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 "<:vspace>" markers to indicate where the blank
<br>lines were in the original markup. It then uses these <:vspace><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>