From 2421ead80976bb8c9089bacc2c138399b05586a7 Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Wed, 4 Jun 2025 16:15:53 -0400 Subject: [PATCH] Update CONTRIBUTING.md Signed-off-by: Aviv Keller --- CONTRIBUTING.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e1c5ce1bb82c0..30f6a3e310c3d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -375,14 +375,14 @@ To edit an existing article, you need to find the markdown file in the `site/pag 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. -```md -'''cjs +````md +```cjs const http = require('node:http'); -''' +``` -'''mjs +```mjs import http from 'node:http'; -''' ``` +```` `cjs` and `mjs` are variants of `js`, it's just to display the correct language in the codebox (cjs = CommonJS, mjs = ES Module).