Welcome to mirror list, hosted at ThFree Co, Russian Federation.

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