Hello, I write a file xml from same data woth this way:
Qt Code:
  1. out.write("<tag attt=\""number\">");
  2. out.write( content );
  3. out.write("</tag>");
  4. .........................................
To copy to clipboard, switch view to plain text mode 

Now, sometimes code is (I notice it only now):
align=center><FONT
so I have it as text in a node. And it is ok. But when I read that xml (using this libraries in java)
Qt Code:
  1. import javax.xml.parsers.DocumentBuilder;
  2. import javax.xml.parsers.DocumentBuilderFactory;
  3. import org.w3c.dom.Document;
  4. import org.w3c.dom.Element;
  5. import org.w3c.dom.NamedNodeMap;
  6. import org.w3c.dom.Node;
  7. import org.w3c.dom.NodeList;
To copy to clipboard, switch view to plain text mode 
the parser crash saying that
Element type "FONT" must be followed by either attribute specifications, ">" or "/>".
I need: or detect this strange content while I write the xml and discard it, or use a parser that permit that as text.

Hope it is clear, thanks,