converts xml:space="preserve" to space="preserve" (in svg:text)
Created by: JoKalliauer
In svg:text
scour converts xml:space="preserve"
to space="preserve"
and removes all leading spaces
Input
<?xml version="1.0" encoding="UTF-8"?>
<svg width="461.98" height="377.98" enable-background="new 0 0 461.977 377.981" font-family="Bitstream Vera Sans" font-size="11px" overflow="visible" version="1.1" viewBox="0 0 461.98 377.98" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<svg:text x="49.613201" y="57.796825" space="preserve" xml:space="preserve"><tspan x="49.613201" y="57.796825" sodipodi:role="line" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"> Outer membrane</tspan></svg:text>
</svg>
Output
<?xml version="1.0" encoding="UTF-8"?>
<svg width="461.98" height="377.98" enable-background="new 0 0 461.977 377.981" font-family="Bitstream Vera Sans" font-size="11px" overflow="visible" version="1.1" viewBox="0 0 461.98 377.98" xmlns="http://www.w3.org/2000/svg">
<text x="49.613201" y="57.796825" space="preserve"><tspan x="49.613201" y="57.796825" sodipodi:role="line" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd">Outer membrane</tspan></text>
</svg>