From c24dee832730e8ccf892f08fbc69a02e1b2d4ad0 Mon Sep 17 00:00:00 2001 From: Arthur Danskin Date: Wed, 8 Mar 2023 11:54:46 -0500 Subject: [PATCH] add glyph character to the glyph inspector for easier copying --- docs/glyph-inspector.html | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/glyph-inspector.html b/docs/glyph-inspector.html index 60732306..f399fdbd 100644 --- a/docs/glyph-inspector.html +++ b/docs/glyph-inspector.html @@ -131,6 +131,7 @@

Free Software

var glyph = font.glyphs.get(glyphIndex), html = '
'; html += '
name
'+glyph.name+'
'; + html += '
glyph
'+String.fromCodePoint.apply(null, glyph.unicodes) + '
'; if (glyph.unicodes.length > 0) { html += '
unicode
'+ glyph.unicodes.map(formatUnicode).join(', ') +'
';