diff options
Diffstat (limited to 'Master/texmf-dist/tex/context/base/s-fnt-26.mkiv')
-rw-r--r-- | Master/texmf-dist/tex/context/base/s-fnt-26.mkiv | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/Master/texmf-dist/tex/context/base/s-fnt-26.mkiv b/Master/texmf-dist/tex/context/base/s-fnt-26.mkiv index 18d1d657333..904091f0671 100644 --- a/Master/texmf-dist/tex/context/base/s-fnt-26.mkiv +++ b/Master/texmf-dist/tex/context/base/s-fnt-26.mkiv @@ -5,7 +5,7 @@ %D subtitle=Goodies Tables, %D author=Hans Hagen, %D date=\currentdate, -%D copyright=PRAGMA] +%D copyright={PRAGMA ADE \& \CONTEXT\ Development Team}] %C %C This module is part of the \CONTEXT\ macro||package and is %C therefore copyrighted by \PRAGMA. See mreadme.pdf for @@ -14,7 +14,7 @@ \startluacode function document.show_goodies_stylistics(name) - local goodies = fonts.goodies.get(name) + local goodies = fonts.goodies.load(name) local stylistics = goodies and goodies.stylistics if stylistics then local col, row, type = context.NC, context.NR, context.type @@ -28,7 +28,7 @@ end function document.show_goodies_featuresets(name) - local goodies = fonts.goodies.get(name) + local goodies = fonts.goodies.load(name) local featuresets = goodies and goodies.featuresets if featuresets then local col, row, type = context.NC, context.NR, context.type @@ -47,7 +47,7 @@ end function document.show_goodies_colorschemes(name) - local goodies = fonts.goodies.get(name) + local goodies = fonts.goodies.load(name) local colorschemes = goodies and goodies.colorschemes if colorschemes then local col, row, type = context.NC, context.NR, context.type @@ -71,4 +71,12 @@ \def\showgoodiesfeaturesets #1{\ctxlua{document.show_goodies_featuresets ("#1")}} \def\showgoodiescolorschemes#1{\ctxlua{document.show_goodies_colorschemes("#1")}} -\endinput +\continueifinputfile{s-fnt-26.mkiv} + +\starttext + + \showgoodiesstylistics {husayni} + \showgoodiesfeaturesets {husayni} + \showgoodiescolorschemes{husayni} + +\stoptext |