Ordered List with Sandcastle Help File Builder

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.

+4
source share
1 answer

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.

Learn more at <list> (C # Programming Guide)

+5
source

Source: https://habr.com/ru/post/1286015/


All Articles