You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This does get Reveal.js slides rendered to the DOM, and I'm able to transition through the slides using arrow keys, but the transitions are instantaneous, instead of gradually adding the new lines of code. Can be seen here: https://imgur.com/a/q3yRPGp.gif
(also worth noting that the syntax highlighting is totally absent, just white text. Even if I try adding RevealHighlight as a plugin)
You either need to do this to prevent double rendering, or find a way to only initialize revealjs once and use deck.sync() on all subsequent rerenders, to avoid a bug where the code snippets shown are a bunch of table elements like shown in this image
Bug: Auto Animate transitions are instantaneous and there is no syntax color highlighting.
Followed the minimum reproducible example from issue #2784 attempting to use Reveal.js into my vite react application.
Presentation.tsx
App.tsx
index.ts
index.css
This does get Reveal.js slides rendered to the DOM, and I'm able to transition through the slides using arrow keys, but the transitions are instantaneous, instead of gradually adding the new lines of code. Can be seen here: https://imgur.com/a/q3yRPGp.gif
(also worth noting that the syntax highlighting is totally absent, just white text. Even if I try adding
RevealHighlight
as a plugin)To reproduce and test locally, you can clone my repository at https://github.com/pinkboid/testrevealreact and run dev
The text was updated successfully, but these errors were encountered: