: I am new to solr/xml/xslt, and trying to figure out how to display : search query fields highlighted in html. I can enable the highlighting : in the query, and I think I get the correct xml response back (See : below: I search using 'Contents' and the highlighting is shown with : <strong> and </strong>. However, I cannot figure out what to add to the : xslt file to transform it in html. I think it is a question of defining
i think you are looking for the disable-output-escaping="yes" option on your <xsl:value-of select="..."/> expression to echo out the highlighted string. hard to be sure since you didn't actaully provide any example of the XSLT or xpath you are trying to use. -Hoss