summaryrefslogtreecommitdiff
path: root/tex/context/base/back-exp-div.lua
blob: 4e67d76150dfa57f34a9d11646fd23991cd32f8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
return {
    name = "html export",
    version = "1.00",
    comment = "Experimental feature.",
    author = "Hans Hagen",
    copyright = "ConTeXt development team",
    suffix = "html",
    remapping = {
        {
            pattern = "*",
            element = "div",
            extras  = {
                namespace = true, -- okay as we have no attributes with that name
                align     = {
                    flushleft  = "left",
                    flushright = "right",
                    middle     = "center",
                }
            }
        },
    }
}