mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 03:31:35 +00:00

Prior to this commit, http request message code blocks in Markdown files were not being highlighted correctly. This has been corrected by adding the new grammar to the bundle, removing the CRLFs (`\r\n`) from these code samples, adding a reminder to re-add them, and tuning the syntax theme to support attribute highlighting. PR-URL: https://github.com/nodejs/node/pull/33785 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
31 lines
351 B
CSS
31 lines
351 B
CSS
.hljs {
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
.hljs-symbol {
|
|
color: #333;
|
|
}
|
|
|
|
.hljs-attribute,
|
|
.hljs-keyword {
|
|
color: #338;
|
|
}
|
|
|
|
.hljs-string,
|
|
.hljs-regexp,
|
|
.hljs-number {
|
|
color: #E54305;
|
|
}
|
|
|
|
.hljs-doctag {
|
|
color: #040404;
|
|
}
|
|
|
|
.hljs-doctag .hljs-type,
|
|
.hljs-doctag .hljs-variable,
|
|
.hljs-comment {
|
|
color: #666;
|
|
font-weight: lighter;
|
|
}
|