You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run docfx build --serve command and confirm generated HTML
Following cref links are rendered as plain text (<span class="xref">(T1, T2)</span>).
5.1. <see cref="System.ValueTuple{T1,T2}" />
5.2. <see cref="System.ValueTuple{_,_}" />
It seems caused by SymbolDisplay.ToDisplayParts Roslyn API returns custom ImmutableArray<SymbolDisplayPart> that don't contains href URL.
Describe the bug
When using
"outputFormat": "mref"
setting.ValueTuple<T1, T2>
cref DocComment is not resolved to link.To Reproduce
Steps to reproduce the behavior:
docfx metadata
commanddocfx build --serve
command and confirm generated HTML<span class="xref">(T1, T2)</span>
).5.1.
<see cref="System.ValueTuple{T1,T2}" />
5.2.
<see cref="System.ValueTuple{_,_}" />
It seems caused by
SymbolDisplay.ToDisplayParts
Roslyn API returns customImmutableArray<SymbolDisplayPart>
that don't containshref
URL.Generated yaml for
ValueTuple<T1>
Generated yaml for
ValueTuple<T1,T2>
(href link is missing)Expected behavior
ValueTuple<T1,T2>
is rendered as link.The text was updated successfully, but these errors were encountered: