statiqdev / Statiq.Framework

A flexible and extensible static content generation framework for .NET.
https://statiq.dev/framework
MIT License
421 stars 74 forks source link

Support <inheritdoc cref> #258

Open pascalberger opened 1 year ago

pascalberger commented 1 year ago

Assuming I have the following code:

/// <inheritdoc cref="Bar()" />
public string Foo()
{
}

I would expect that Foo shows the the full documentation (all XML comment tags) of Bar when using Statiq.Docs. Currently it doesn't show any comments.