mdx-deck
mdx-deck copied to clipboard
♠️ React MDX-based presentation decks
Hi there, I recently opened [this issue](https://github.com/pomber/code-surfer/issues/82) on the [CodeSurfer](https://github.com/pomber/code-surfer) repo where I was experiencing an issue where after going through several code animations and moving to the next slide,...
I was having trouble with going fullscreen on firefox (the navbar would not go away on fullscreen, not sure why), so I created this logic for a presentation myself. I...
try to use multiple decks like shown in the csb-examples. ``` // deck.js import { slides as one } from './one.mdx' import { slides as two } from './two.mdx' export...
I read in mdx-deck github issues, we can use reach router for slide transition in v2. I tried many things still slide transition is not working. Here is my `provider.js`...
dup #375
When installing `gatsby-theme-mdx-deck` on [my existing gatsby project](https://github.com/LesleyLai/blog) by ``` yarn add --dev gatsby-theme-mdx-deck ``` I get ``` ==== JS stack trace ========================================= 0: ExitFrame [pc: 00007FF73681224D] 1: StubFrame [pc:...
Upgrading to `3.1.0` (from #631) in only one presentation package in a monorepo causes that presentation to fail ("unexpected token" => untranspiled JSX). The call order looks like this: 1....
Hello! I have a very simple presentation that builds successfully the first time, but then fails to rebuild once a change is made. If you simply save the file, the...
I have the following deck.mdx and Plot.tsx ``` mdx import Plot from '../components/Plot.tsx'; # Title hoge ``` ``` typescript // import packages export interface PlotDataProps { // this is row...
Was digging through on how to add animations via gatsby's component shadowing feature but ran into issues while trying do so. Seems that the current setup for how mdx-deck work...