casile 0.14.4

The command line interface to the CaSILE toolkit, a book publishing workflow employing SILE and other wizardry
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
local plain = require("classes.plain")
local cabook = require("classes.cabook")

local class = pl.class(plain)
class._name = "cageometry"

function class:_init (options)
   if not CASILE then
      SU.error("Cannot run without CASILE global instantiated")
   end
   plain._init(self, options)
   self:loadPackage("linespacing")
end

class.declareOptions = cabook.declareOptions
class.setOptions = cabook.setOptions

return class