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 365780f commit f13afd3Copy full SHA for f13afd3
src/resources/filters/quarto-pre/shortcodes-handlers.lua
@@ -309,6 +309,8 @@ function handlePagebreak()
309
310
if FORMAT == 'docx' then
311
return pandoc.RawBlock('openxml', pagebreak.ooxml)
312
+ elseif FORMAT == 'pptx' then
313
+ return pandoc.Para{pandoc.Str ''}
314
elseif FORMAT:match 'latex' then
315
return pandoc.RawBlock('tex', pagebreak.latex)
316
elseif FORMAT:match 'odt' then
@@ -326,4 +328,4 @@ function handlePagebreak()
326
328
return pandoc.Para{pandoc.Str '\f'}
327
329
end
330
-end
331
+end
0 commit comments