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 79c945f commit dce4fcd
Showing 1 changed file with 22 additions and 21 deletions.
43 changes: 22 additions & 21 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,10 @@
}

function processText() {
let editableBox = document.getElementById("editableBox");
let htmlContent = editableBox.innerHTML;
let inputBox = document.getElementById("inputBox");
let outputBox = document.getElementById("outputBox");

let htmlContent = inputBox.innerHTML;

// Remove anchor tags and keep only text content
const anchorRegex = /<a\b[^>]*>(.*?)<\/a>/g;
Expand All @@ -71,28 +73,27 @@
});

// insert separator between each character of the keywords

const keywords = [
'công an',
'Công an',
'Công An',
'CÔNG AN',
'quân đội',
'Quân đội',
'Quân Đội',
'QUÂN ĐỘI',
'thủ tướng',
'Thủ tướng',
'Thủ Tướng',
'THỦ TƯỚNG',
'hiếp dâm',
'Hiếp dâm',
'Hiếp Dâm',
'HIẾP DÂM',
]
'công an',
'Công an',
'Công An',
'CÔNG AN',
'quân đội',
'Quân đội',
'Quân Đội',
'QUÂN ĐỘI',
'thủ tướng',
'Thủ tướng',
'Thủ Tướng',
'THỦ TƯỚNG',
'hiếp dâm',
'Hiếp dâm',
'Hiếp Dâm',
'HIẾP DÂM',
];

for (let kw of keywords) {
htmlContent = htmlContent.replace(kw, insertSeparator(kw));
htmlContent = htmlContent.replace(new RegExp(kw, 'g'), insertSeparator(kw));
}

outputBox.innerHTML = htmlContent;
Expand Down

0 comments on commit dce4fcd

Please sign in to comment.