Browse Source

Merge 707f2f1307 into 345d44b00f

pull/15941/merge
Shreyash Karandikar 7 hours ago
committed by GitHub
parent
commit
f59dae25d8
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      docs/en/docs/js/custom.js

4
docs/en/docs/js/custom.js

@ -85,7 +85,9 @@ function setupTermynal() {
.filter(line => line.type === "input")
.map(line => line.value)
.join("\n");
node.textContent = inputCommands;
const plainTextExtractor = document.createElement("div");
plainTextExtractor.innerHTML = inputCommands;
node.textContent = plainTextExtractor.textContent;
const div = document.createElement("div");
node.style.display = "none";
node.after(div);

Loading…
Cancel
Save