This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Script runs on the browser console of the webpage: http://unicode.org/Public/UNIDATA/UnicodeData.txt | |
| const entries = document.querySelector("body > pre").innerText.split('\n'); | |
| entries.pop(); | |
| let decompTags = ['<font>','<noBreak>','<initial>','<medial>','<final>','<isolated>','<circle>','<super>','<sub>','<vertical>','<wide>','<narrow>','<small>','<square>','<fraction>','<compat>'] | |
| function parseDecompMapping(mapping) { | |
| if (!mapping) return null; | |
| mapping = mapping.split(' '); |
NewerOlder