blob: 3a7b49cd41248512940c21f204a062ba71276a8d (
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 = "!m:*",
element = "div",
extras = {
namespace = true, -- okay as we have no attributes with that name
align = {
flushleft = "left",
flushright = "right",
middle = "center",
}
}
},
}
}
|