@@ -95,9 +95,9 @@ end, "Text to appear on the top of the right page")
95
95
96
96
SILE .registerCommand (" book:sectioning" , function (options , content )
97
97
local level = SU .required (options , " level" , " book:sectioning" )
98
- SILE .call (" increment-multilevel-counter" , {id = " sectioning" , level = level })
98
+ SILE .call (" increment-multilevel-counter" , { id = " sectioning" , level = level })
99
99
if SU .boolean (options .toc , true ) then
100
- SILE .call (" tocentry" , {level = level }, SU .subContent (content ))
100
+ SILE .call (" tocentry" , { level = level }, SU .subContent (content ))
101
101
end
102
102
local lang = SILE .settings .get (" document.language" )
103
103
if options .numbering == nil or options .numbering == " yes" then
@@ -107,7 +107,7 @@ SILE.registerCommand("book:sectioning", function (options, content)
107
107
end
108
108
SILE .call (options .prenumber )
109
109
end
110
- SILE .call (" show-multilevel-counter" , {id = " sectioning" })
110
+ SILE .call (" show-multilevel-counter" , { id = " sectioning" })
111
111
if options .postnumber then
112
112
if SILE .Commands [options .postnumber .. " :" .. lang ] then
113
113
options .postnumber = options .postnumber .. " :" .. lang
@@ -133,7 +133,7 @@ SILE.registerCommand("chapter", function (options, content)
133
133
SILE .call (" open-double-page" )
134
134
SILE .call (" noindent" )
135
135
SILE .scratch .headers .right = nil
136
- SILE .call (" set-counter" , {id = " footnote" , value = 1 })
136
+ SILE .call (" set-counter" , { id = " footnote" , value = 1 })
137
137
SILE .call (" book:chapterfont" , {}, function ()
138
138
SILE .call (" book:sectioning" , {
139
139
numbering = options .numbering ,
0 commit comments