summaryrefslogtreecommitdiff
path: root/tex/context/base/tabl-tbl.lua
diff options
context:
space:
mode:
authorMarius <mariausol@gmail.com>2010-11-17 14:40:15 +0200
committerMarius <mariausol@gmail.com>2010-11-17 14:40:15 +0200
commit49a6126dc0cc532254edaeecec129961b132cac5 (patch)
treeddf1cef4731c0ac4c4954e577a11cafeb47e7389 /tex/context/base/tabl-tbl.lua
parent7fc9b91bca833ba04496e8f819fb60dafd77f6e0 (diff)
downloadcontext-49a6126dc0cc532254edaeecec129961b132cac5.tar.gz
beta 2010.11.17 13:27
Diffstat (limited to 'tex/context/base/tabl-tbl.lua')
-rw-r--r--tex/context/base/tabl-tbl.lua36
1 files changed, 36 insertions, 0 deletions
diff --git a/tex/context/base/tabl-tbl.lua b/tex/context/base/tabl-tbl.lua
new file mode 100644
index 000000000..dbb3cfd37
--- /dev/null
+++ b/tex/context/base/tabl-tbl.lua
@@ -0,0 +1,36 @@
+if not modules then modules = { } end modules ['tabl-tbl'] = {
+ version = 1.001,
+ comment = "companion to tabl-tbl.mkiv",
+ author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
+ copyright = "PRAGMA ADE / ConTeXt Development Team",
+ license = "see context related readme files"
+}
+
+-- A couple of hacks ... easier to do in Lua than in regular
+-- TeX. More will follow.
+
+local tonumber = tonumber
+local gsub, rep, sub = string.gsub, string.rep, string.sub
+
+local P, C, Cc, Ct, lpegmatch = lpeg.P, lpeg.C, lpeg.Cc, lpeg.Ct, lpeg.match
+
+local settexcount = tex.setcount
+
+local separator = P("|")
+local nested = lpeg.patterns.nested
+local pattern = Ct((separator * (C(nested) + Cc("")) * C((1-separator)^0))^0)
+
+function commands.presettabulate(preamble)
+ preamble = gsub(preamble, "%*(%b{})(%b{})", function(n,p)
+ return rep(sub(p,2,-2),tonumber(sub(n,2,-2)) or 1)
+ end)
+ local t = lpegmatch(pattern,preamble)
+ local m = #t - 2
+ settexcount("global","noftabulatecolumns", m/2)
+ settexcount("global","tabulatehasfirstrulespec", t[1] == "" and 0 or 1)
+ settexcount("global","tabulatehaslastrulespec", t[m+1] == "" and 0 or 1)
+ for i=1,m,2 do
+ context.settabulateentry(t[i],t[i+1])
+ end
+ context.setlasttabulateentry(t[m+1])
+end