User:Base/highlightMixOfAlphabets.js
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
//gfdgfdgdfавапвпиыв
function HighlightMix(){
$('div.mw-body-content *')
.contents()
.filter(function(){
return this.nodeType == 3 && this.textContent.trim() !== "";
})
.text()
.replace(/([\u0400-\u04FF\u0500-\u052F]+)/g, "<b class='u-base-cyrillic-text'>$1</b>")
.replace(/([\u0370-\u03FF]+)/g, "<b class='u-base-greek-text'>$1</b>");
}
/**/
$(HighlightMix);