FSharpPlus
FSharpPlus copied to clipboard
`<!>` operator not visible in docs
In our operators docs we have <!>
operator: https://fsprojects.github.io/FSharpPlus/reference/fsharpplus-operators.html#(%20%3C!%3E%20)
It is not displayed properly, and we get f x
instead of f <!> x
.
I've tested it both with Firefox and Chrome and it looks the same.
It seems that the reason for this, is that <!>
gets treated as HTML comment, as pictured below:
Shouldn't we report this to FsDocs ? Or is it a way to fix it from here?
Looks like an FsDocs issue. Perhaps forgotten to markdown escape function names?
Perhaps another thing we can do is have a remark in the doc text about the issue in order to make it less weird on the site.
Could be https://github.com/fsprojects/FSharp.Formatting/pull/765/ I'll try to upgrade F# formatting and see if it fixes things