[Mono-docs-list] Re: [Gtk-sharp-list] MonoDoc Issues
Brian Kerrick Nickel
kerrick@cox.net
Sun, 04 Jul 2004 12:50:41 -0700
> 1. MonoDoc doesn't like properly escaped XML code.
I haven't checked it but this may not be the case. The < and >
entities need to be defined in the XML doctype. If they aren't defined,
they are invalid and result in broken XML. In the HTML 3.2 doctype these
entities are declared as follows:
<!ENTITY amp CDATA "&" -- ampersand -->
<!ENTITY gt CDATA ">" -- greater than -->
<!ENTITY lt CDATA "<" -- less than -->
It would probably be useful to have such a declaration in the doc
doctype, but you could probably manage with:
<example>
<code lang=".config file">
<configuration>
<system.diagnostics>
<assert logfilename="where I want TraceListener messages to go"/>
</system.diagnostics>
</configuration></code>
</example>
- Brian