I would like to provide a higher level of detail at the class level (in this case, actually Module ) with code samples, etc., but I am having problems working with various tags.
''' <summary> ''' Here a summary of <c>SmallCodeChunk</c> ''' </summary> ''' <example> ''' Mmm, Skynet? ''' <code> ''' code.CodingItself("that so meta!") ''' </code> ''' </example> ''' <remarks> ''' <para>Unit testable by replacing the <see cref="Implementation"/> property ''' with a mocked/stubbed <see cref="IThingy"/>. ''' </para> ''' <para>Paragraph of a bunch of stuff. <c>Y</c> is used for <c>True</c> just ''' for the sake of making the universe a (not) better place. ''' </para> ''' </remarks>
I understand that some of the tags used (e.g. <exception> ) are probably really invalid, but it seems to me that I can do things like <example> . And I would expect some kind of formatting (a monospace font, maybe?) For the <c> tags.
If I am not doing anything wrong, is there a subset of XML document tags that are supported for displaying objects in the browser?
source share