Rank: Enthusiast
Joined: 7/19/2006 Posts: 13
|
Hi guys,
I have a problem and I'm wondering if there's something I'm missing or is this an expected behaviour. What I'm doing is I have a macro A that's being invoked while document output is being rendered. The macro is looks somewhat like this:
<xsl:for-each select="$currentPage/node">
<xsl:value-of select="umbraco.library:RenderTemplate(@id)"/>
</xsl:for-each>
Each of the documents being rendered has a RichText property. It all goes good until i put a macro B in that property. It gets rendered in the editor but in the output it doesn't. I only see the <?UMBRACO_MACRO> tag. (I have the <?ASPNET_FORM> tags around the macro A)
Thanks for comments,
Pawel
|
Rank: Enthusiast
Joined: 7/19/2006 Posts: 13
|
Yhhh, forgot about the markup. Maybe this works: <xsl:for-each select="$currentPage/node">
<xsl:value-of select="umbraco.library:RenderTemplate(@id)"/>
</xsl:for-each>
|