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
@nodejs/nodejs-website should review this list and contact inactive collaborators to confirm their continued interest in participating in the project.`;
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -375,14 +375,14 @@ To edit an existing article, you need to find the markdown file in the `site/pag
375
375
376
376
The codebox component is used to display code snippets. If two code snippets follow without any text between them, they will be displayed in the same codebox, but with two tabs.
377
377
378
-
```md
379
-
'''cjs
378
+
````md
379
+
```cjs
380
380
const http = require('node:http');
381
-
'''
381
+
```
382
382
383
-
'''mjs
383
+
```mjs
384
384
import http from 'node:http';
385
-
'''
386
385
```
386
+
````
387
387
388
388
`cjs` and `mjs` are variants of `js`, it's just to display the correct language in the codebox (cjs = CommonJS, mjs = ES Module).
0 commit comments