We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We should try to make the Word output more similar to the PDF output by supporting landscape orientation pages.
I made a little progress on this, but had to set it aside.
These Pandoc lua elements will manipulate section breaks and page orientations.
local wordStartLandscape = pandoc.RawBlock( 'openxml', '<w:pPr><w:sectPr><w:pgSz w:w="12240" w:h="15840"/></w:sectPr></w:pPr><w:lastRenderedPageBreak/>' ) local wordEndLandscape = pandoc.RawBlock( 'openxml', '<w:br w:type="page"/><w:pPr><w:sectPr><w:pgSz w:w="15840" w:h="12240" w:orient="landscape"/></w:sectPr></w:pPr><w:p>TEST</w:p><w:lastRenderedPageBreak/>' )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We should try to make the Word output more similar to the PDF output by supporting landscape orientation pages.
I made a little progress on this, but had to set it aside.
These Pandoc lua elements will manipulate section breaks and page orientations.
The text was updated successfully, but these errors were encountered: