1mdnormalizer(1) General Commands Manual mdnormalizer(1)
2
3
4
6 mdnormalizer - Normalize XML Documents
7
9 mdnormalizer [FILES]+
10
12 mdnormalizer is a program that normalizes the XML within the input doc‐
13 uments.
14
15 Normalization consists of ensuring that the XML is well-formed. It is
16 equivalent to the following C# fragment:
17 XmlDocument doc = new XmlDocument ();
18 doc.Load (filename);
19 StreamWriter file = new StreamWriter (filename, false,
20 new System.Text.UTF8Encoding (false));
21 doc.Save (writer);
22 writer.Close ();
23
25 Visit http://lists.ximian.com/mailman/listinfo/mono-docs-list for
26 details.
27
29 Visit http://www.mono-project.com for details
30
31
32
33 mdnormalizer(1)