forked from pandoc-ext/pagebreak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pagebreak.lua
128 lines (116 loc) · 4.46 KB
/
pagebreak.lua
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
--[[
pagebreak – convert raw LaTeX page breaks to other formats
Copyright © 2017-2023 Benct Philip Jonsson, Albert Krewinkel
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
]]
local stringify = (require 'pandoc.utils').stringify
--- configs – these are populated in the Meta filter.
local default_pagebreaks = {
asciidoc = '<<<\n\n',
context = '\\page',
epub = '<p style="page-break-after: always;"> </p>',
html = '<div style="page-break-after: always;"></div>',
latex = '\\newpage{}',
ms = '.bp',
ooxml = '<w:p><w:r><w:br w:type="page"/></w:r></w:p>',
odt = '<text:p text:style-name="Pagebreak"/>',
typst = '#pagebreak()\n\n'
}
local function pagebreak_from_config (config)
local pagebreak = default_pagebreaks
local html_class = config['html-class']
and stringify(config['html-class'])
or os.getenv 'PANDOC_PAGEBREAK_HTML_CLASS'
if html_class and html_class ~= '' then
pagebreak.html = string.format('<div class="%s"></div>', html_class)
end
local odt_style = config['odt-style']
and stringify(config['odt-style'])
or os.getenv 'PANDOC_PAGEBREAK_ODT_STYLE'
if odt_style and odt_style ~= '' then
pagebreak.odt = string.format('<text:p text:style-name="%s"/>', odt_style)
end
return pagebreak
end
--- Return a block element causing a page break in the given format.
local function newpage(format, pagebreak)
if format:match 'asciidoc' then
return pandoc.RawBlock('asciidoc', pagebreak.asciidoc)
elseif format == 'context' then
return pandoc.RawBlock('context', pagebreak.context)
elseif format == 'docx' then
return pandoc.RawBlock('openxml', pagebreak.ooxml)
elseif format:match 'epub' then
return pandoc.RawBlock('html', pagebreak.epub)
elseif format:match 'html.*' then
return pandoc.RawBlock('html', pagebreak.html)
elseif format:match 'latex' then
return pandoc.RawBlock('tex', pagebreak.latex)
elseif format:match 'ms' then
return pandoc.RawBlock('ms', pagebreak.ms)
elseif format:match 'odt' then
return pandoc.RawBlock('opendocument', pagebreak.odt)
elseif format:match 'typst' then
return pandoc.RawBlock('typst', pagebreak.typst)
else
-- fall back to insert a form feed character
return pandoc.Para{pandoc.Str '\f'}
end
end
--- Checks whether the given string contains a LaTeX pagebreak or
--- newpage command.
local function is_newpage_command(command)
return command:match '^\\newpage%{?%}?$'
or command:match '^\\pagebreak%{?%}?$'
end
-- Returns a filter function for RawBlock elements, checking for LaTeX
-- pagebreak/newpage commands; returns `nil` when the target format is
-- LaTeX.
local function latex_pagebreak (pagebreak)
-- Don't do anything if the output is TeX
if FORMAT:match 'tex$' then
return nil
end
return function (el)
-- check that the block is TeX or LaTeX and contains only
-- \newpage or \pagebreak.
if el.format:match 'tex' and is_newpage_command(el.text) then
-- use format-specific pagebreak marker. FORMAT is set by pandoc to
-- the targeted output format.
return pagebreak
end
-- otherwise, leave the block unchanged
return nil
end
end
-- Turning paragraphs which contain nothing but a form feed
-- characters into line breaks.
local function ascii_pagebreak (raw_pagebreak)
return function (el)
if #el.content == 1 and el.content[1].text == '\f' then
return raw_pagebreak
end
end
end
--- Filter function; this is the entrypoint when used as a filter.
function Pandoc (doc)
local config = doc.meta.pagebreak or {}
local break_on = config['break-on'] or {}
local raw_pagebreak = newpage(FORMAT, pagebreak_from_config(doc.meta))
return doc:walk {
RawBlock = latex_pagebreak(raw_pagebreak),
-- Replace paragraphs that contain just a form feed char.
Para = break_on['form-feed']
and ascii_pagebreak(raw_pagebreak)
or nil
}
end