Doraku / DefaultDocumentation

Create a simple markdown documentation from the Visual Studio xml one.
MIT No Attribution
157 stars 26 forks source link

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

Closed lufinkey closed 1 year ago

lufinkey commented 1 year ago

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

Doraku commented 1 year ago

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>
lufinkey commented 1 year ago

Got it, thanks!