Embedding non standard XML tags in XML comments

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Embedding non standard XML tags in XML comments

    Hi,


    For a particular class I would like to document necessary
    web.config entries. The problems is that when I place a
    snipit of web.config text that contains non-standard XML
    documentation tags the snip-it is ignored. I have tried
    placing the snipit in summary, remarks and example-code
    sections but have had no luck.

    I am using NDoc to Document Generator to generate the help
    file.

    Thanks for your help!!!
    Terry
    terry Guest

  2. Similar Questions and Discussions

    1. Disable Options>Import Comments in Comments Pane
      A customer asked me to replace the logic of the Comments>Import Comments menu item. I can easily find and replace this menu item with the name...
    2. embedding MP3
      :confused; We can not convert to SWF for our purposes. We are an ad agency posting mp3 files to our website for distribution to our media partners...
    3. How to treat template tags as comment tags?
      Hi all, I am using DW MX to edit templates for a FreeMarker application. The template tag fromat is like so: <ul> <#list birds as bird>...
    4. [PHP-DEV] [PHP-CVS] cvs: php-src / NEWS /ext/standard parsedate.y /ext/standard/tests/time
      Derick Rethans wrote: bison -y /usr/src/php/php5/ext/standard/parsedate.y conflicts: 17 shift/reduce...
    5. Using ParseChildren attribute to load child tags - VS removes tags
      I am building a poll control, nested in the tag I have child tags to setup the poll options. Everything works fine, but when I edit a property in...
  3. #2

    Default Re: Embedding non standard XML tags in XML comments

    Hi Eric,
    Thanks for replying. I ended up having success by replacing the '<' and
    '>' with '&lt;' and '&gt;' respectively. Here is an example:

    /// <example>Modifying web.config by adding an entry for application's
    name:
    /// <code>
    /// &lt;configuration&gt;
    /// &lt;appSettings&gt;
    /// <b>&lt;add key="ApplicationName" value="EBFStockLoan" /&gt;</b>
    /// &lt;/appSettings&gt;
    /// &lt;system.web&gt;
    /// ...
    /// </code>
    /// </example>

    Thanks again,
    Terry



    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Terry Wahl Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139