You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by Bas Passon <BP...@parite.nl> on 2000/11/16 12:18:54 UTC

how to stop encodeMarkup?

Hello,

How can i stop cocoon from encoding the markup:

	i want to output: <a href=".."></a>
	
cocoon makes of this:

	&lt;a href=".."&gt;&lt;/a&gt;

how can i stop cocoon encoding the markup?

thnx,

Bas Passon

Re: how to stop encodeMarkup?

Posted by Konstantin Piroumian <KP...@flagship.ru>.
how to stop encodeMarkup?Could you give us some more information how did this happen?
To output <a href...> simply write it somewhere in your formatting XSL template:

<xsl:template match="link">
    <a href={@href} .../>
</xsl:template>
  ----- Original Message ----- 
  From: Bas Passon 
  To: Cocoon Mailinglist (E-mail) 
  Sent: 16 ?????? 2000 ?., ??????? 14:18
  Subject: how to stop encodeMarkup?


  Hello, 

  How can i stop cocoon from encoding the markup: 

          i want to output: <a href=".."></a> 
          
  cocoon makes of this: 

          &lt;a href=".."&gt;&lt;/a&gt; 

  how can i stop cocoon encoding the markup? 

  thnx, 

  Bas Passon