Rodrigo Pombo

Results 207 comments of Rodrigo Pombo

It seems to be a problem **when using `gatsby-theme-mdx-deck`** and importing a component that imports something from `mdx-deck`. For example, this deck fails: ```mdx import Component from "./component" ## Hi...

Hm 🤔, I interpret that the circumstances from the note are exactly the cases where you use `Direction.Down`. I find the current behavior very counterintuitive. I understand if a breaking...

> maybe rather `revertKeys={true}` ? would that revert all keys? or just vertical keys? Another option is to add a new `Direction`

I think that's remotion saying that one of the avatars is taking too long to load. There may be a way to retry the failed frame soon: https://github.com/remotion-dev/remotion/issues/212

Now the timeout is 120 seconds, I tried a video with 20k stars and it worked.

Note that [MDX v2 accepts markdown in more places](https://v2.mdxjs.com/blog/v2/#improvements-to-the-mdx-format): ~~~mdx *hi*? # hi? # hi? ~~~

Isn't this the same problem as #14? I'm very interested in a solution. I know nothing about textmate grammars but let me know if I can help.

If you run the animation using a linear function from 0% to 100% it should look the same as running it without a progress parameter. So, if both iterations take...

I have a working [sample with React here](https://codesandbox.io/s/client-side-shiki-with-react-ul66q?file=/src/App.js) if you want to compare

Maybe adding these two lines to the `browser` field in package.json? ```json { "main": "dist/index.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "unpkg": "dist/index.unpkg.iife.js", "browser": { "./dist/index.js": "./dist/index.iife.js", "./dist/index.esm.js": "./dist/index.browser.mjs" } } ```...