casile 0.14.4

The command line interface to the CaSILE toolkit, a book publishing workflow employing SILE and other wizardry
Documentation
local base = require("packages.base")

local package = pl.class(base)
package._name = "calists"

local nestedlist = 0
local liststyles = {}
local listarealskip = nil

function package:_init ()
   base._init(self)
   self:loadPackage("counters")
   SILE.scratch.liststyle = nil
end

function package:registerCommands ()
   self:registerCommand("listarea", function (options, content)
      nestedlist = nestedlist + 1
      if nestedlist == 1 then
         listarealskip = SILE.settings:get("document.parindent").width
      end
      liststyles[nestedlist] = { options.numberstyle }
      SILE.call("set-counter", { id = "listarea" .. nestedlist, value = 1, display = options.numberstyle or "arabic" })
      SILE.settings:temporarily(function ()
         SILE.settings:set("document.parindent", SILE.types.node.glue())
         local factor = nestedlist == 1 and 0 or nestedlist / 2
         local glue = SILE.types.node.glue(options.lskip or tostring(listarealskip + listarealskip * factor))
         SILE.settings:set("document.lskip", glue)
         SILE.settings:set("document.rskip", SILE.types.node.glue(options.rskip or "0pt"))
         SILE.process(content)
      end)
      SILE.call("noindent")
      nestedlist = nestedlist - 1
   end)

   self:registerCommand("listitem", function (_, content)
      local markerwidth = SILE.types.length("1.5em")
      SILE.call("kern", { width = tostring(markerwidth:negate()) })
      SILE.call("rebox", { width = tostring(markerwidth) }, function ()
         if liststyles[nestedlist][1] then
            SILE.call("show-counter", { id = "listarea" .. nestedlist })
            SILE.typesetter:typeset(".")
         else
            SILE.typesetter:typeset("")
         end
      end)
      SILE.call("increment-counter", { id = "listarea" .. nestedlist })
      SILE.process(content)
      if nestedlist == 1 then
         SILE.call("smallskip")
      else
         SILE.call("par")
      end
   end)
end

return package