Closed
Description
It seems like documentation comments on trait methods get unescaped when they are shown as implemented traits. Something like a\*b\*c\*
shows up as a*b*c* in the trait documentation, but as abc* when looking at a type that implements the trait. Adding double escapes makes it look bad on the trait page instead, and replacing *
with *
doesn't help, since it gets reinterpreted as *
anyway.