Open
Description
I'd like any APIs that would be used by a dart programmer to use a monospace font. This would help developers even better identify what pieces of the documentation are for use in a dart program (dart code interfaces) and what pieces are for information about said element (actual dart docs ///
).
Compare the following from mockito
using a monospaced font for the Class link/references

versus

Some js you can paste in console to get in idea of what the above is created with.
const apiElements = document.querySelectorAll("dl dt span.name");
apiElements.forEach(function (element) {
element.style.fontFamily = "SFMono-Regular, Consolas, 'Liberation Mono', Menlo, Courier, monospace";
});