Open
Description
Rustdoc generally has fairly consistent ways of styling documentation items. For example, in the default Light theme, structs are magenta, traits are lavender, functions and methods are gold, etc., and are always set in a sans-serif or monospace font. However, this convention does not seem to get applied to intra-documentation links.
Right now, if I write
/// [Result]
the link will be blue and set in serifs; if I write
/// [`Result`]
it'll be blue and set in monospace.
It would be more attractive and consistent for [Result]
to be set in magenta sans-serif, and [`Result`]
to be set in magenta monospace.