From 78d488292c6586a239e1842a78cd974205557871 Mon Sep 17 00:00:00 2001 From: Alejandra Date: Fri, 16 Jan 2026 11:47:11 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Format?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/en/docs/js/custom.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/en/docs/js/custom.js b/docs/en/docs/js/custom.js index 22b84502f..be326d302 100644 --- a/docs/en/docs/js/custom.js +++ b/docs/en/docs/js/custom.js @@ -81,7 +81,10 @@ function setupTermynal() { } } saveBuffer(); - const inputCommands = useLines.filter(line => line.type === "input").map(line => line.value).join("\n"); + const inputCommands = useLines + .filter(line => line.type === "input") + .map(line => line.value) + .join("\n"); node.textContent = inputCommands; const div = document.createElement("div"); node.style.display = "none";