Упорядоченный список с помощью файла справки Sandcastle - PullRequest
4 голосов
/ 10 июня 2009

Как сделать так, чтобы список в блоках xmldoc отображался как упорядоченный список при создании chm с помощью Sandcastle Helpfile Builder?

Не работает следующее:

/// <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>

В конкретном случае, который я пытаюсь найти, список находится внутри элемента

.

1 Ответ

5 голосов
/ 11 ноября 2011

На всякий случай, если кто-нибудь столкнется с этим вопросом - правильная реализация:

    /// <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>

Не обязательно находиться в разделе <remarks>.

Подробнее на (Руководство по программированию в C #)

...