Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
ducnc1201 authored Feb 2, 2024
1 parent 8b614e7 commit 79c945f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
htmlContent = htmlContent.replace(kw, insertSeparator(kw));
}

editableBox.innerHTML = htmlContent;
outputBox.innerHTML = htmlContent;
}

function copyOutput() {
Expand All @@ -112,8 +112,8 @@
</head>
<body>
<h1>Keyword Processing</h1>
<div id="inputBox" class="input-box" contenteditable="true" placeholder="Paste your HTML content here..."></div>
<div id="outputBox" class="output-box" oninput="processText()"></div>
<div id="inputBox" class="input-box" contenteditable="true" oninput="processText()" placeholder="Paste your HTML content here..."></div>
<div id="outputBox" class="output-box"></div>
<button class="copy-btn" onclick="copyOutput()">Copy Processed Content</button>
</body>
</html>

0 comments on commit 79c945f

Please sign in to comment.