Embed Codepen in Gatsby markdown
npm install --save @weknow/gatsby-remark-codepen
// In your gatsby-config.js
plugins: [
{
resolve: "gatsby-transformer-remark",
options: {
plugins: [
{
resolve:"@weknow/gatsby-remark-codepen",
options: {
theme: "dark",
height: 400
}
}
]
}
}
];
# Blog post title
This is an example of embedding a pen.
Add any markdown as you normally do, and then insert a valid
Codepen link anywhere to automatically transform it into an embed.
#### Check this pen
https://codepen.io/digitalhydra/pen/jPqWwP
NOTE: Make sure to copy the link instead of embed code.
MIT