I use XSLT while convert Xml to html. I need to bind value to h4 tag to generate bookmark, but I get xslt compile error. How can I achive this ?
<xsl:for-each select="checklist">
<table>
<tbody>
<tr>
<td>
<h4 id=<xsl:value-of select="@value"/>'>
<xsl:value-of select="@name"/>
</h4>
</td>
</tr>
<tr>
<td class="tbChecklist">
<xsl:copy-of select="summary"/>
</td>
</tr>
</tbody>
</table>
</xsl:for-each>