From 84ae330c246304f7d18204d28c2a9626c4edcdf1 Mon Sep 17 00:00:00 2001 From: Alejandra Date: Fri, 16 Jan 2026 11:42:24 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20input=20command=20display?= =?UTF-8?q?=20in=20setupTermynal=20function?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/en/docs/js/custom.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/en/docs/js/custom.js b/docs/en/docs/js/custom.js index a4fd32e42..22b84502f 100644 --- a/docs/en/docs/js/custom.js +++ b/docs/en/docs/js/custom.js @@ -81,6 +81,8 @@ function setupTermynal() { } } saveBuffer(); + 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"; node.after(div);