static S ocr_glyphsToCode(L glyphs) { new StringBuilder buf; for (S g : glyphs) if (l(g) > 1 && !contains("\\[{", g.charAt(0))) buf.append("[").append(g).append("]"); else buf.append(g); ret str(buf); }