Statiq.Docs icon indicating copy to clipboard operation
Statiq.Docs copied to clipboard

<see> tags in XML comments don't generate the correct HTML links when inside a <list>

Open SilentSin opened this issue 7 years ago • 0 comments

/// <summary>
/// This reference works: <see cref="AnotherThing "/> 
/// <list type="bullet">
///   <item>
///   But this one doesn't: <see cref="AnotherThing "/> 
///   </item>
/// </list>
/// </summary>
public class Thing { }

public class AnotherThing { }

SilentSin avatar Oct 10 '18 00:10 SilentSin