summaryrefslogtreecommitdiff
path: root/tex/context/base/s-fnt-30.mkiv
diff options
context:
space:
mode:
authorMarius <mariausol@gmail.com>2011-01-31 00:28:38 +0200
committerMarius <mariausol@gmail.com>2011-01-31 00:28:38 +0200
commita894f2e8c02c29b8ddeec3094acc1859ab34f864 (patch)
tree9469b3f59ac3b5a394712f4bbfcdb648bda35f4a /tex/context/base/s-fnt-30.mkiv
parent89fb25d071d8742dfade2dc98a4f81e718030798 (diff)
downloadcontext-a894f2e8c02c29b8ddeec3094acc1859ab34f864.tar.gz
beta 2011.01.24 10:00
Diffstat (limited to 'tex/context/base/s-fnt-30.mkiv')
-rw-r--r--tex/context/base/s-fnt-30.mkiv45
1 files changed, 45 insertions, 0 deletions
diff --git a/tex/context/base/s-fnt-30.mkiv b/tex/context/base/s-fnt-30.mkiv
new file mode 100644
index 000000000..d6d298011
--- /dev/null
+++ b/tex/context/base/s-fnt-30.mkiv
@@ -0,0 +1,45 @@
+%D \module
+%D [ file=s-fnt-30,
+%D version=2006.05.10, % abou tthen, quite old already
+%D title=\CONTEXT\ Style File,
+%D subtitle=Showing Character Data,
+%D author=Hans Hagen,
+%D date=\currentdate,
+%D copyright={PRAGMA / Hans Hagen \& Ton Otten}]
+%C
+%C This module is part of the \CONTEXT\ macro||package and is
+%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
+%C details.
+
+\startluacode
+function document.show_character_data(n)
+ local n = characters.number(n)
+ local d = characters.data[n]
+ local NC, NR = context.NC, context.NR
+ if d then
+ local function entry(label,name)
+ NC() context(label)
+ NC() context(d[name])
+ NC() NR()
+ end
+ context.starttabulate { "|Tl|Tl|]" }
+ entry("unicode index" , "unicodeslot")
+ entry("context name" , "contextname")
+ entry("adobe name" , "adobename")
+ entry("category" , "category")
+ entry("description" , "description")
+ entry("uppercase code", "uccode")
+ entry("lowercase code", "lccode")
+ entry("specials" , "specials")
+ context.stoptabulate()
+ end
+end
+\stopluacode
+
+\def\ShowCharacterData#1%
+ {\ctxlua{document.show_character_data(#1)}}
+
+% \ShowCharacterData{123}
+% \ShowCharacterData{0x7B}
+
+% \dostepwiserecurse{`A}{`Z}{1}{\ShowCharacterData{#1}}