We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8b301e commit 8b241f7Copy full SHA for 8b241f7
pagebreak/pagebreak.lua
@@ -23,13 +23,13 @@ end
23
24
--- configs – these are populated in the Meta filter.
25
local pagebreak = {
26
+ asciidoc = '<<<\n\n',
27
epub = '<p style="page-break-after: always;"> </p>',
28
html = '<div style="page-break-after: always;"></div>',
29
latex = '\\newpage{}',
30
ms = '.bp',
31
ooxml = '<w:p><w:r><w:br w:type="page"/></w:r></w:p>',
- odt = '<text:p text:style-name="Pagebreak"/>',
32
- asciidoc = '<<<\n\n'
+ odt = '<text:p text:style-name="Pagebreak"/>'
33
}
34
35
local function pagebreaks_from_config (meta)
0 commit comments