[FLOW3-general] How to include CDATA exception in fluid view?

GallupCurrent Support tech at gallupcurrent.com
Fri Apr 8 23:49:11 CEST 2011


when I attempt the do the following, it, um... hahaha, it works. Only,
what it does is it keeps fluid from rendering the internal object
parameters.

So, how to I get fluid to pass the "<!CDATA[ ... ]]>" into the rendered output?


Currently, this:
                                <name>{trail.title}</name>
                                <description><![CDATA[
                                        <em>Status/Quality:</em>
{trail.status}<br/>
                                        <em>Description:</em>
{trail.length}mi - {trail.description}<br/>
                                        <em>Access:</em> {trail.access}<br/>
                                ]]></description>

Yields this (which, arguably, is reasonable):

				<name>Wonderful Beautiful West</name>
				<description>

					<em>Status/Quality:</em> {trail.status}<br/>
					<em>Description:</em> {trail.length}mi - {trail.description}<br/>
					<em>Access:</em> {trail.access}<br/>
				</description>

But what I want is:

				<name>Wonderful Beautiful West</name>
				<description><![CDATA[

					<em>Status/Quality:</em> In Place, In Use<br/>
					<em>Description:</em> 5.5mi - Trail begins hear the...<br/>
					<em>Access:</em> Trail head is just off Hwy 400 after it...<br/>
				]]></description>


More information about the FLOW3-general mailing list