api-doc-tools
api-doc-tools copied to clipboard
ref/out parameters aren't properly linked
This is the member:
float MeasureText(String, ref SKRect);
MeasureText(String, ref SKRect) : Single
in this section: https://developer.xamarin.com/api/type/SkiaSharp.SKPaint/#Public_Methods
This is the mdoc:
<Parameter Name="bounds" Type="SkiaSharp.SKRect&" RefType="ref" />
in this file: https://github.com/mono/SkiaSharp/blob/master/docs/en/SkiaSharp/SKPaint.xml#L1068-L1096
And this is the generated link:
https://developer.xamarin.com/api/member/SkiaSharp.SKPaint.MeasureText/p/System.String/SkiaSharp.SKRect@/
Note the @. If I change it to a &:
https://developer.xamarin.com/api/member/SkiaSharp.SKPaint.MeasureText/p/System.String/SkiaSharp.SKRect&/
Then it works.