It seems from stackoverflow that the way to put a URL link in XML doc comments is just to use <a href...
For example the dotnet/fsharp branch feature/docs has this XML doc:
/// See the <see cref="T:Microsoft.FSharp.Collections.SeqModule"/> module for further operations related to sequences.
///
/// See also <a href="https://docs.microsoft.com/dotnet/fsharp/language-reference/sequences">F# Language Guide - Sequences</a>.
which is currently giving the first link corrrectly but the second one is missing: https://fsharp.github.io/fsharp-core-api-docs/reference/fsharp-collections-seq-1.html
This is an fsdocs bug.
It seems from stackoverflow that the way to put a URL link in XML doc comments is just to use
<a href...For example the dotnet/fsharp branch feature/docs has this XML doc:
which is currently giving the first link corrrectly but the second one is missing: https://fsharp.github.io/fsharp-core-api-docs/reference/fsharp-collections-seq-1.html
This is an fsdocs bug.