Skip to content

Commit

Permalink
fix: add print view
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Ellison committed May 18, 2023
1 parent 987a919 commit 8f63ae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/output/[...parms].jsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ function Page() {
mdx = '<SlidePage>\n' + content + '\n</SlidePage>'
} else if (format === 'doc') {
mdx = '<div>\n' + content.replace(/---/g, '') + '\n</div>'
} else if (format === 'print') {
} else if (format === 'ppt-print') {
mdx = '<PrintSlide>\n' + content + '\n</PrintSlide>'
} else {
mdx = removeSection(mdx, 'TitleSlide');
Expand Down

0 comments on commit 8f63ae8

Please sign in to comment.