Skip to content

Commit

Permalink
Powerpoint writer: avoid extra blank lines before author.
Browse files Browse the repository at this point in the history
(In the case where there is no subtitle.)

Closes #10619.
  • Loading branch information
jgm committed Feb 13, 2025
1 parent 54039e3 commit f5d41a0
Show file tree
Hide file tree
Showing 11 changed files with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Text/Pandoc/Writers/Powerpoint/Output.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1752,7 +1752,9 @@ metadataToElement layout titleElems subtitleElems authorsElems dateElems
, Just cSld <- findChild (elemName ns "p" "cSld") layout
, Just spTree <- findChild (elemName ns "p" "spTree") cSld = do
let combinedAuthorElems = intercalate [Break] authorsElems
subtitleAndAuthorElems = intercalate [Break, Break] [subtitleElems, combinedAuthorElems]
subtitleAndAuthorElems = intercalate [Break, Break] $
filter (not . null)
[subtitleElems, combinedAuthorElems]
(titleId, titleElement) <- nonBodyTextToElement layout [PHType "ctrTitle"] titleElems
(subtitleId, subtitleElement) <- nonBodyTextToElement layout [PHType "subTitle"] subtitleAndAuthorElems
(dateId, dateElement) <- nonBodyTextToElement layout [PHType "dt"] dateElems
Expand Down
Binary file modified test/pptx/document-properties-short-desc/output.pptx
Binary file not shown.
Binary file modified test/pptx/document-properties-short-desc/templated.pptx
Binary file not shown.
Binary file modified test/pptx/footer/basic/output.pptx
Binary file not shown.
Binary file modified test/pptx/footer/fixed-date/output.pptx
Binary file not shown.
Binary file modified test/pptx/footer/higher-slide-number/output.pptx
Binary file not shown.
Binary file modified test/pptx/footer/no-title-slide/output.pptx
Binary file not shown.
Binary file modified test/pptx/layouts/deleted.pptx
Binary file not shown.
Binary file modified test/pptx/layouts/moved.pptx
Binary file not shown.
Binary file modified test/pptx/speaker-notes-after-metadata/output.pptx
Binary file not shown.
Binary file modified test/pptx/speaker-notes-after-metadata/templated.pptx
Binary file not shown.

0 comments on commit f5d41a0

Please sign in to comment.