mdnormalizer.1 884 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .\"
  2. .\" mdnormalizer manual page.
  3. .\" (C) 2006 Jonathan Pryor
  4. .\" Author:
  5. .\" Jonathan Pryor ([email protected])
  6. .\"
  7. .de Sp \" Vertical space (when we can't use .PP)
  8. .if t .sp .5v
  9. .if n .sp
  10. ..
  11. .TH "mdnormalizer" 1
  12. .SH NAME
  13. mdnormalizer \- Normalize XML Documents
  14. .SH SYNOPSIS
  15. .B mdnormalizer
  16. [FILES]+
  17. .SH DESCRIPTION
  18. .I mdnormalizer
  19. is a program that normalizes the XML within the input documents.
  20. .PP
  21. .I Normalization
  22. consists of ensuring that the XML is well-formed. It is equivalent to the
  23. following C# fragment:
  24. .nf
  25. XmlDocument doc = new XmlDocument ();
  26. doc.Load (filename);
  27. StreamWriter file = new StreamWriter (filename, false,
  28. new System.Text.UTF8Encoding (false));
  29. doc.Save (writer);
  30. writer.Close ();
  31. .fi
  32. .PP
  33. .SH MAILING LISTS
  34. .TP
  35. Visit http://lists.ximian.com/mailman/listinfo/mono-docs-list for details.
  36. .SH WEB SITE
  37. Visit http://www.mono-project.com for details