Browse Source

🎨 Format

pull/14722/head
Alejandra 6 months ago
parent
commit
78d488292c
  1. 5
      docs/en/docs/js/custom.js

5
docs/en/docs/js/custom.js

@ -81,7 +81,10 @@ function setupTermynal() {
} }
} }
saveBuffer(); 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; node.textContent = inputCommands;
const div = document.createElement("div"); const div = document.createElement("div");
node.style.display = "none"; node.style.display = "none";

Loading…
Cancel
Save