Compares attached chars (without disambigs) and the canonical rel name to quickly determine typos or shortened rels
Works only in the canonical rel bin!
in this part of the code, you can set which colors the highlight should use
// CSS styling for the highlighted chars
$('head').append(`<style type="text/css">
.highlight-found { background-color: #313c36; }
.highlight-notfound { background-color: #664040; }
</style>`);
✅the .highlight-found class is used on the rel's text, to show which characters were successfully matched.
⚠️the .highlight-notfound class is used in the character column, on characters which were not found.
Please report any issues where the matching logic or the highlighting logic fails.