File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 99<!-- source_link=lib/vm.js -->
1010
1111The ` vm ` module enables compiling and running code within V8 Virtual
12- Machine contexts. ** The ` vm ` module is not a security mechanism. Do
13- not use it to run untrusted code.**
12+ Machine contexts.
13+
14+ <span class =" critical " >The ` vm ` module is not a security
15+ mechanism. Do not use it to run untrusted code.</span >
1416
1517JavaScript code can be compiled and run immediately or
1618compiled, saved, and run later.
Original file line number Diff line number Diff line change 2929 --background-color-highlight : var (--white-smoke );
3030 --color-brand-primary : var (--gray6 );
3131 --color-brand-secondary : var (--green1 );
32+ --color-critical : var (--red1 );
3233 --color-fill-app : var (--white );
3334 --color-fill-side-nav : var (--gray6 );
3435 --color-links : var (--green1 );
4041
4142.dark-mode {
4243 --background-color-highlight : var (--black2 );
44+ --color-critical : var (--red2 );
4345 --color-fill-app : var (--black1 );
4446 --color-fill-side-nav : var (--black3 );
4547 --color-links : var (--green5 );
@@ -165,6 +167,11 @@ em code {
165167 line-height : 1.5rem ;
166168}
167169
170+ .critical , .critical code {
171+ color : var (--critical );
172+ font-weight : 700 ;
173+ }
174+
168175li .version-picker {
169176 position : relative;
170177}
You can’t perform that action at this time.
0 commit comments