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

function commands.getfirstcharacter(str)
    local first, rest = utf.match(str,"(.?)(.*)$")
    context.setvalue("firstcharacter",first)
    context.setvalue("remainingcharacters",rest)
end

function commands.doiffirstcharelse(chr,str)
    commands.doifelse(utf.sub(str,1,1) == chr)
end