Skip to content

Commit 8b241f7

Browse files
niszettarleb
authored andcommitted
Sort formats in pagebreak.lua
For maintenance point of view, formats in pagebreak.lua are arranged alphabetically.
1 parent e8b301e commit 8b241f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pagebreak/pagebreak.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ end
2323

2424
--- configs – these are populated in the Meta filter.
2525
local pagebreak = {
26+
asciidoc = '<<<\n\n',
2627
epub = '<p style="page-break-after: always;"> </p>',
2728
html = '<div style="page-break-after: always;"></div>',
2829
latex = '\\newpage{}',
2930
ms = '.bp',
3031
ooxml = '<w:p><w:r><w:br w:type="page"/></w:r></w:p>',
31-
odt = '<text:p text:style-name="Pagebreak"/>',
32-
asciidoc = '<<<\n\n'
32+
odt = '<text:p text:style-name="Pagebreak"/>'
3333
}
3434

3535
local function pagebreaks_from_config (meta)

0 commit comments

Comments
 (0)