Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Embed GitHub Gist using Remix

Is it possible to embed a Gist in Remix? I'm trying to embed the following gist in Remix using:

<script src='https://gist.github.com/AnthonyLzq/7d1cfeda389b7f5f38b62bd2640a32ba.js'></script>

But it is not displaying anything.

like image 937
Anthony Luzquiños Avatar asked Dec 05 '25 20:12

Anthony Luzquiños


1 Answers

The problem is that React is trying to hydrate the <script> element. Since you don't want React to process this, you need to treat it as raw HTML.

<div
  dangerouslySetInnerHTML={{
    __html: `<script src="https://gist.github.com/AnthonyLzq/7d1cfeda389b7f5f38b62bd2640a32ba.js"></script>`,
  }}
/>

Embedded Gist

like image 152
Kiliman Avatar answered Dec 08 '25 09:12

Kiliman



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!