Is it possible to add text from a xsl variable to the inside of a html tag something like this?
<xsl:variable name="selected">
<xsl:if test="@class = 'selected'"> class="selected"</xsl:if>
</xsl:variable>
<li{$selected}></li>
|
|
Is it possible to add text from a xsl variable to the inside of a html tag something like this?
|
||
|
|
|
|
Try this:
Optionally, the |
||
|
|
|
You should not attempt to write this as literal text, instead look at xsl:element and xsl:attribute. Rough example:
|
||
|
|
|
|
Note that if you are careful enough to make it its first child, you can use directly inside of your
|
|||
|
|