Spaces:
Running
Running
File size: 16,789 Bytes
2e2cacf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 |
--[[# first-line-indent.lua β First line indentation filter
Copyright: Β© 2021β2023 Contributors
License: MIT β see LICENSE for details
@TODO latex_quote should use options.size (or better, a specific option)
@TODO option for leaving indents after headings (French style)
@TODO smart setting of the post-heading style based on `lang`
@TODO option to leave indent at the beginning of the document
]]
PANDOC_VERSION:must_be_at_least '2.17'
stringify = pandoc.utils.stringify
equals = pandoc.utils.equals
pandoctype = pandoc.utils.type
-- # Options
---@class Options Options map with default values.
---@field format string|nil output format (currently: 'html' or 'latex')
---@field indent boolean whether to use first line indentation globally
---@field set_metadata_variable boolean whether to set the `indent`
-- metadata variable.
---@field set_header_includes boolean whether to provide formatting code in
-- header-includes.
---@field auto_remove_indents boolean whether to automatically remove
-- indents after specific block types.
---@field remove_after table list of strings, Pandoc AST block types
-- after which first-line indents should be automatically removed.
---@field remove_after_class table list of strings, classes of elements
-- after which first-line indents should be automatically removed.
---@field dont_remove_after_class table list of strings, classes of elements
-- after which first-line indents should not be removed. Prevails
-- over remove_after.
---@field size string|nil a CSS / LaTeX specification of the first line
-- indent length
---@field recursive table<string, options> Pandoc Block types to
--- which the filter is recursively applied, with options map.
--- The option `dont_indent_first` controls whether indentation
--- is removed on the first paragraph.
local Options = {
format = nil,
indent = true,
set_metadata_variable = true,
set_header_includes = true,
auto_remove = true,
remove_after = pandoc.List({
'BlockQuote',
'BulletList',
'CodeBlock',
'DefinitionList',
'HorizontalRule',
'OrderedList',
}),
remove_after_class = pandoc.List({
'statement',
}),
dont_remove_after_class = pandoc.List:new(),
size = nil, -- default let LaTeX decide
size_default = '1.5em', -- default value for HTML
recursive = {
Div = {dont_indent_first = false},
BlockQuote = {dont_indent_first = true},
}
}
-- # Filter global variables
---@class code map pandoc objects for indent/noindent Raw code.
local code = {
tex = {
indent = pandoc.RawInline('tex', '\\indent '),
noindent = pandoc.RawInline('tex', '\\noindent '),
},
latex = {
indent = pandoc.RawInline('latex', '\\indent '),
noindent = pandoc.RawInline('latex', '\\noindent '),
},
html = {
indent = pandoc.RawBlock('html',
'<div class="first-line-indent-after"></div>'),
noindent = pandoc.RawBlock('html',
'<div class="no-first-line-indent-after"></div>'),
}
}
---LATEX_QUOTE_ENV: LaTeX's definition of the quote environement
---used to define HeaderIncludes.
---a \setlength{\parindent}{<size>} will be appended
---@type string
local LATEX_QUOTE_ENV = [[\makeatletter
\renewenvironment{quote}
{\list{}{\listparindent 1.5em%
\itemindent \listparindent
\rightmargin \leftmargin
\parsep \z@ \@plus \p@}%
\item\noindent\relax}
{\endlist}
\makeatother
]]
---@class HeaderIncludes map of functions to produce
---header-includes code given a size parameter (string|nil),
--- either for global or for local indentation markup.
--- optionally wrap the constructed global header markup (e.g. <style> tags).
--- glob = {html : function, latex: function}
--- wrap = {html : function, latex: function}
--- loc = {html : function, latex: function}
HeaderIncludes = {
glob = {
html = function(size)
size = size or Options.size_default
local code = [[ p {
text-indent: SIZE;
-- Javed
-- here you can define th margin to be zero or do not touch it
-- margin: 0;
}
header p {
text-indent: 0;
margin: 1em 0;
}
:is(h1, h2, h3, h4, h5, h6) + p {
text-indent: 0;
}
li > p, li > div p {
text-indent: 0;
margin-bottom: 1rem;
}
]]
return code:gsub("SIZE", size)
end,
latex = function(size)
local size_code = size and '\\setlength{\\parindent}{'..size..'}\n'
or ''
return LATEX_QUOTE_ENV .. size_code
end,
},
wrap = {
html = function(header_str)
return "<style>\n/* first-line indent styles */\n" .. header_str
.. "/* end of first-line indent styles */\n</style>"
end,
latex = function(str) return str end,
},
loc = {
html = function(size)
size = size or Options.size_default
local code = [[ div.no-first-line-indent-after + p {
text-indent: 0;
}
div.first-line-indent-after + p {
text-indent: SIZE;
}
]]
return code:gsub("SIZE", size)
end,
latex = function(_) return '' end,
}
}
-- # encapsulate Quarto/Pandoc variants
---format_match: whether format matches a string pattern
---ex: format_match('html5'), format_match('html*')
---in Quarto we try removing non-alphabetical chars
---@param pattern string
---@return boolean
local function format_match(pattern)
return quarto and (quarto.doc.is_format(pattern)
or quarto.doc.is_format(pattern:gsub('%A',''))
)
or FORMAT:match(pattern)
end
---add_header_includes: add a block to the document's header-includes
---meta-data field.
---@param meta pandoc.Meta the document's metadata block
---@param blocks pandoc.Blocks list of Pandoc block elements (e.g. RawBlock or Para)
--- to be added to the header-includes of meta
---@return pandoc.Meta meta the modified metadata block
local function add_header_includes(meta, blocks)
-- Pandoc
local function pandoc_add_headinc(meta,blocks)
local header_includes = pandoc.MetaList( { pandoc.MetaBlocks(blocks) })
-- add any exisiting meta['header-includes']
-- it can be MetaInlines, MetaBlocks or MetaList
if meta['header-includes'] then
if pandoctype(meta['header-includes']) == 'List' then
header_includes:extend(meta['header-includes'])
else
header_includes:insert(meta['header-includes'])
end
end
meta['header-includes'] = header_includes
return meta
end
-- Quarto
local function quarto_add_headinc(blocks)
quarto.doc.include_text('in-header', stringify(blocks))
end
return quarto and quarto_add_headinc(blocks)
or pandoc_add_headinc(meta,blocks)
end
-- # Helper functions
-- ensure_list: turns Inlines and Blocks meta values into list
local function ensure_list(elem)
if elem and (pandoctype(elem) == 'Inlines'
or pandoctype(elem) == 'Blocks') then
elem = pandoc.List:new(elem)
end
return elem
end
--- classes_include: check if one of an element's class is in a given
-- list. Returns true if match, nil if no match or the element doesn't
-- have classes.
---@param elem table pandoc AST element
---@param classes table pandoc List of strings
local function classes_include(elem,classes)
if elem.classes then
for _,class in ipairs(classes) do
if elem.classes:includes(class) then return true end
end
end
end
--- is_indent_cmd: check if an element is a LaTeX indent command
---@param elem pandoc.Inline
---@return string|nil 'indent', 'noindent' or nil
-- local function is_indent_cmd(elem)
-- return (equals(elem, code.latex.indent)
-- or equals(elem, code.tex.indent)) and 'indent'
-- or (equals(elem, code.latex.noindent)
-- or equals(elem, code.tex.noindent)) and 'noindent'
-- or nil
-- end
local function is_indent_cmd(elem)
return elem.text and (
elem.text:match('^%s*\\indent%s*$') and 'indent'
or elem.text:match('^%s*\\noindent%s*$') and 'noindent'
)
or nil
end
-- # Filter functions
--- Add format-specific explicit indent markup to a paragraph.
--- Returns a list of blocks containing a single paragraph
--- or a rawblock followed by a paragraph, depending on format.
---@param type string 'indent' or 'noindent', type of markup to add
---@param elem pandoc.Para
---@return pandoc.Blocks
local function indent_markup(type, elem)
local result = pandoc.List:new()
if not (type == 'indent' or type == 'noindent') then
result:insert(elem)
elseif format_match('latex') then
-- in LaTeX, replace any `\indent` or `\noindent`
-- at the beginning of the paragraph with
-- with the one corresponding to `type`
if elem.content[1] and is_indent_cmd(elem.content[1]) then
elem.content[1] = code.tex[type]
else
elem.content:insert(1, code.tex[type])
end
result:insert(elem)
elseif format_match('html') then
result:extend({ code.html[type], elem })
end
return result
end
--- process_blocks: process indentations in a list of blocks.
-- Adds output code for explicitly specified first-line indents,
-- automatically removes first-line indents after blocks of the
-- designed types unless otherwise specified.
---@param blocks pandoc.Blocks element (list of blocks)
---@param dont_indent_first boolean whether to indent the first paragraph
local function process_blocks(blocks, dont_indent_first)
dont_indent_first = dont_indent_first or false
-- tag for the first element
local is_first_block = true -- tags the doc's first element
-- tag to trigger indentation auto-removal on the next element
local dont_indent_next_block = false
local result = pandoc.List:new()
for _,elem in pairs(blocks) do
-- Paragraphs: if they have explicit LaTeX indent markup
-- reproduce it in the output format, otherwise
-- remove indentation if needed, provided `auto_remove` is on.
if elem.t == "Para" then
if elem.content[1] and is_indent_cmd(elem.content[1]) then
-- 'indent' or 'noindent' ?
local type = is_indent_cmd(elem.content[1])
result:extend(indent_markup(type, elem))
elseif is_first_block and dont_indent_first then
result:extend(indent_markup('noindent', elem))
elseif dont_indent_next_block and Options.auto_remove then
result:extend(indent_markup('noindent', elem))
else
result:insert(elem)
end
dont_indent_next_block = false
-- Non-Paragraphs: check first whether it's an element after
-- which indentation must be removed. Next insert it, applying
-- this function recursively within the element if needed.
else
if Options.auto_remove then
if Options.remove_after:includes(elem.t) and
not classes_include(elem, Options.dont_remove_after_class) then
dont_indent_next_block = true
elseif elem.classes and
classes_include(elem, Options.remove_after_class) then
dont_indent_next_block = true
else
dont_indent_next_block = false
end
end
-- recursively process the element if needed
if Options.recursive[elem.t] then
local dif = Options.recursive[elem.t].dont_indent_first
elem.content = process_blocks(elem.content, dif)
end
-- insert
result:insert(elem)
end
-- ensure `is_first_block` turns to false
-- even if the first block wasn't a paragraph
-- or if it had explicit indent marking
is_first_block = false
end
return result
end
--- process_doc: Process indents in the document's body text.
-- Adds output code for explicitly specified first-line indents,
-- automatically removes first-line indents after blocks of the
-- designed types unless otherwise specified.
local function process_doc(doc)
local dont_indent_first = false
-- if no output format, do nothing
if not Options.format then return end
-- if the doc has a title, do not indent first paragraph
if doc.meta.title then
dont_indent_first = true
end
doc.blocks = process_blocks(doc.blocks, dont_indent_first)
return doc
end
--- read_user_options: read user options from meta element.
-- in Quarto options may be under format/pdf or format/html
-- the latter override root ones.
local function read_user_options(meta)
local user_options = {}
if meta.indent == false then
Options.indent = false
end
if meta['first-line-indent'] then
user_options = meta['first-line-indent']
end
local formats = {'pdf', 'html', 'latex'}
if meta.format then
for format in ipairs(formats) do
if format_match(format) and meta.format[format] then
for k,v in meta.format[format] do
user_options[k] = v
end
end
end
end
if user_options['set-metadata-variable'] == false then
Options.set_metadata_variable = false
end
if user_options['set-header-includes'] == false then
Options.set_header_includes = false
end
-- size
-- @todo using stringify means that LaTeX commands in
-- size are erased. But it ensures that the filter gets
-- a string. Improvement: check that we have a string
-- and throw a warning otherwise
if user_options.size and pandoctype(user_options.size == 'Inlines') then
Options.size = stringify(user_options.size)
end
if user_options['auto-remove'] == false then
Options.auto_remove = false
end
-- autoremove elements and classes
-- for elements we only need a whitelist, remove_after
-- for classes we need both a whitelist (remove_after_class)
-- and a blacklist (dont_remove_after_class).
-- first insert user values in `remove_after`, `remove_after_class`
-- and `dont_remove_after_class`.
for optname, metakey in pairs({
remove_after = 'remove-after',
remove_after_class = 'remove-after-class',
dont_remove_after_class = 'dont-remove-after-class',
}) do
local user_value = ensure_list(user_options[metakey])
if user_value and pandoctype(user_value) == 'List' then
for _,item in ipairs(user_value) do
Options[optname]:insert(stringify(item))
end
end
end
-- then remove blacklisted entries from `remove_after`
-- and `remove_after_class`.
for optname, metakey in pairs({
remove_after = 'dont-remove-after',
remove_after_class = 'dont-remove-after-class'
}) do
local user_value = ensure_list(user_options[metakey])
if user_value and pandoctype(user_value) == 'List' then
-- stringify the list
for i,v in ipairs(user_value) do
user_value[i] = stringify(v)
end
-- filter to that returns true iff an item isn't blacklisted
local predicate = function (str)
return not(user_value:includes(str))
end
-- apply the filter to the whitelist
Options[optname] = Options[optname]:filter(predicate)
end
end
end
--- set_meta: insert options in doc's meta
--- Sets `indent` and extends `header-includes` if needed.
---@param meta pandoc.Meta
---@return pandoc.Meta|nil meta nil if no changes
local function set_meta(meta)
local changes = false -- only return if changes are made
local header_code = nil
local format = Options.format
-- set the `indent` metadata variable unless otherwise specified or
-- already set to false
if Options.set_metadata_variable and not(meta.indent == false) then
meta.indent = true
changes = true
end
-- set the `header-includes` metadata variable
if Options.set_header_includes and Options.indent then
-- do we apply first line indentation globally?
if Options.indent then
header_code = HeaderIncludes.glob[format](Options.size)
end
-- provide local explicit indentation styles
header_code = header_code .. HeaderIncludes.loc[format](Options.size)
-- wrap the header if needed
header_code = HeaderIncludes.wrap[format](header_code)
-- insert if not empty
if header_code ~= '' then
add_header_includes(meta, { pandoc.RawBlock(format, header_code)})
changes = true
end
end
return changes and meta or nil
end
--- process_metadata: process user options.
-- read user options, set the `indent` metadata variable,
-- add formatting code to `header-includes`.
local function process_metadata(meta)
local changes = false -- only return if changes are made
local header_code = nil
local format = format_match('html') and 'html'
or (format_match('latex') and 'latex')
if not format then
return nil
else
Options.format = format
end
read_user_options(meta) -- places values in global `options`
return set_meta(meta)
end
--- Main code
-- Returns the filters in the desired order of execution
return {
{
Meta = process_metadata
},
{
Pandoc = process_doc
}
}
|