Doraku / DefaultDocumentation

Create a simple markdown documentation from the Visual Studio xml one.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

<see> tag doesn't use the href argument when specified

lufinkey opened this issue · comments

One of the arguments of the <see> tag is the href argument where you can manually specify a link. If this link is specified, it should override the auto-generated microsoft link

It should actually handle it, but only if there is no cref attribute, it's one or the other, you are not supposed to have both.

edit: To be more complete, the see element is used to specify a link to either a member (cref) or an external link (href). In both cases you can override the displayed text by setting the content of the see element:

<see href="www.github.com">custom display text</see>

Got it, thanks!