How to make a list in xmldoc blocks render as an ordered list when I create chm using Builder Sandcastle?
The following does not work:
/// <list type="numbered"> /// <item>Built in support for foobar</item> /// <item>Client gooblygook and associated javascript support</item> /// <item>Client side ability to read values from control</item> /// <item>AJAX support via ASP.NET callbacks</item> /// <item>Smaller HTML and Javascript footprint when compared to the crappy thirdparty control we paid too much for.</item> /// </list>
In the specific case I'm trying to resolve, the list is within the <summary /> element.
Just in case, someone comes across this question - the correct implementation:
/// <list type="number"> /// <item>Built in support for foobar</item> /// <item>Client gooblygook and associated javascript support</item> /// <item>Client side ability to read values from control</item> /// <item>AJAX support via ASP.NET callbacks</item> /// <item>Smaller HTML and Javascript footprint when compared to the crappy thirdparty control we paid too much for.</item> /// </list>
It should not be in the <remarks> section.
<remarks>
Learn more at <list> (C # Programming Guide)
Source: https://habr.com/ru/post/1286015/More articles:Is Visio the standard for sketching software? - visioProcessing of ColdFusion COM object objects for MS Word 2000 dies after 100 seconds - coldfusionwhere to save application configuration - .netHow do I know when to use an existing exception or write a custom exception? - c #httpwebrequest Cookiecontainer - .netIf .Create () cannot create an instance, should it return an empty object, null, or an exception? - instantiationControl table - c #web.config encryption in a web farm - securityHow to find the number of fixed files in a disruptive program? - svnHow to set JFormattedTextField value with placeholder character? - javaAll Articles