diff options
Diffstat (limited to 'Master/texmf-dist/tex/context/base/luat-ini.lua')
-rw-r--r-- | Master/texmf-dist/tex/context/base/luat-ini.lua | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Master/texmf-dist/tex/context/base/luat-ini.lua b/Master/texmf-dist/tex/context/base/luat-ini.lua new file mode 100644 index 00000000000..092593541ae --- /dev/null +++ b/Master/texmf-dist/tex/context/base/luat-ini.lua @@ -0,0 +1,26 @@ +if not modules then modules = { } end modules ['luat-ini'] = { + version = 1.001, + comment = "companion to luat-lib.tex", + author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", + copyright = "PRAGMA ADE / ConTeXt Development Team", + license = "see context related readme files" +} + +--[[ldx-- +<p>We cannot load anything yet. However what we will do us reserve a fewtables. +These can be used for runtime user data or third party modules and will not be +cluttered by macro package code.</p> +--ldx]]-- + +userdata = userdata or { } +thirddata = thirddata or { } +document = document or { } + +--[[ldx-- +<p>Please create a namespace within these tables before using them!</p> + +<typing> +userdata ['my.name'] = { } +thirddata['tricks' ] = { } +</typing> +--ldx]]-- |