You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 9, 2021. It is now read-only.
In some places, non-bold text appears inside of <code>. Currently I don't think we render it correctly; the stylesheet makes all code elements bold.
For example: <code><i>constructor</i><b>.prototype</b></code>
would be better rendered as <code><var>constructor</var>.prototype</code>
with a stylesheet that includes code > var { font-weight: normal; }.
Similarly we have <code><b>1110</b><i>xxxx</i></code>.
There are also other places in the doc where non-bold Courier text is used for identifiers or bits of code. I tend to think that's just a historical thing and we don't need to preserve it.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In some places, non-bold text appears inside of
<code>
. Currently I don't think we render it correctly; the stylesheet makes allcode
elements bold.For example:
<code><i>constructor</i><b>.prototype</b></code>
would be better rendered as
<code><var>constructor</var>.prototype</code>
with a stylesheet that includes
code > var { font-weight: normal; }
.Similarly we have
<code><b>1110</b><i>xxxx</i></code>
.There are also other places in the doc where non-bold Courier text is used for identifiers or bits of code. I tend to think that's just a historical thing and we don't need to preserve it.
The text was updated successfully, but these errors were encountered: