public class InlineInheritDocPipe : IPipe<Doc, Doc>
A IPipe<I, O>
that inlines <inheritdoc/>
tags.
Under the hood, the process of inlining works as follows:
- each member in the Doc
is analyzed
- if this member contains an <inheritdoc/>
element, it's removed from the member comment
- then, the inherited documentation (either from the base type or from the specified cref) is added to the member comment.
public Task<Doc> Run(Doc doc)