I’m having a bit off an issue with my XSLT.
I’m using:
<img src="{@url}" alt="{@alt}" title="{@title}" />
However in my output I am getting :
<img src="dldldl" alt="kdkdkdkd" title="dkdkdk">
The closing tag has now been removed. I’ve looked around and seen some issues like this but most are resolved by changing to <xsl:output method="html" which I already have.
This is the head of my XSLT file
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="2.0"
xmlns:math="http://exslt.org/math">
<xsl:output method="html" indent="yes"/>
Any help would be greatly appreciated.
This was solved by changing too tomcat, when running localy our devs where running the app with jetty which seems to run xsl differently.