PDF export ignores Appear component
See original GitHub issueHej,
I’ve been successfully using mdx-deck
for my latest presentation, and it was a breeze! 🙏
Now I wanted to export it as a PDF in order to upload it.
The Problem
List elements (and potentially everything else) in <Appear />
is not rendered.
Expected Behavior
Every component in <Appear />
with index n
yields a new page that renders all components up to and including index n
.
How to reproduce?
import { Appear } from 'mdx-deck'
# I don't see the problem?
<ul>
<Appear>
<li>Not</li>
<li>in</li>
<li>PDF</li>
</Appear>
</ul>
---
# The end
mdx-deck pdf pdf-issue.mdx
Open dist/presentation.pdf
. It has only two pages, expected are five pages.
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Resolve printing and PDF export errors in InDesign
Identify and resolve problems or errors while printing or exporting to PDF from InDesign.
Read more >PDF Export Problems? Toggle Tagged PDF On and Off
I'm glad to read about pdf export problems here. My problem is that the pdfs that I sometimes create for others, can be...
Read more >PDF Export ignores Layer group transparency and visiblity
Layer group transparency is ignored in PDF export. it works well in image export. ... Use tasks to break down this issue into...
Read more >PDF Export Consistently Missing Elements - Ask the community
I'm having consistent issues with PDF export, where one or more elements is missing from exported PDFs. The missing elements are sometimes ...
Read more >PDF export ignores certain layers and effects, outputs wrong ...
It depends on the case and what is required. Check that you have color calibrated your monitor, that Publisher has the right color...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi, I’ve just fired a PR for it here #186. I simply launch Puppeteer with a specigic user-agent and check it in Appear.
Done in https://github.com/jxnblk/mdx-deck/pull/186