Statiq.Docs
                                
                                
                                
                                    Statiq.Docs copied to clipboard
                            
                            
                            
                        <see> tags in XML comments don't generate the correct HTML links when inside a <list>
/// <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 { }