I generate XHTML with Scala, which for some reason insists on writing image tags like this:
<img src="..."></img>
It is legal XML, so I can't fault Scala, but Prince complains about the </img> tag. It's not fatal, just unsightly. Is there anything I can do to turn off those errors?
<img src="..."></img>
It is legal XML, so I can't fault Scala, but Prince complains about the </img> tag. It's not fatal, just unsightly. Is there anything I can do to turn off those errors?