summaryrefslogtreecommitdiff
path: root/tex/context/base/strc-mar.lua
blob: d2e2b0352e38b2dbae45c928da1ca624c7ebd46b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
if not modules then modules = { } end modules ['strc-mar'] = {
    version   = 1.001,
    comment   = "companion to strc-mar.mkiv",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files"
}

local structures = structures
local marks      = structures.marks
local lists      = structures.lists

function marks.title(tag,n)
    lists.savedtitle(tag,n,"marking")
end

function marks.number(tag,n) -- no spec
    -- no prefix (as it is the prefix)
    lists.savednumber(tag,n)
end