I recently installed xmllint in windows using this instructions. However when I run xmllint against any xml file it adds double quotes at the beginning of the line. Example
<?xml version="1.0"?>
<library path="lib/libplugin_triangle">
<class type="triangle::cPlugingTriangle" base_class_type="regular_polygon::cRegularPolygon">
<description>This is a triangle plugin.</description>
</class>
</library>
becomes
<?xml version="1.0"?>
<library path="lib/libplugin_triangle">
" " <class type="triangle::cPlugingTriangle" base_class_type="regular_polygon::cRegularPolygon">
" " " " <description>This is a triangle plugin.</description>
" " </class>
</library>
I have played with several definitions of XMLLINT_INDET with the windows environmental variables tool. But nothing happens.
Do these double quotes are legal in XML?