1.1.0 • Published 6 years ago

gatsby-remark-wrap-iframe v1.1.0

Weekly downloads
67
License
MIT
Repository
-
Last release
6 years ago

Wraps iframes or objects (e.g. embedded YouTube videos) within markdown files in a div with the classname gatsby-iframe-wrap. If you want out-of-the-box responsive iframes, please checkout gatsby-remark-repsonsive-iframe instead.

Install

npm install --save gatsby-remark-wrap-iframe

How to use

// In your gatsby-config.js
plugins: [
  {
    resolve: `gatsby-transformer-remark`,
    options: {
      plugins: [`gatsby-remark-wrap-iframe`],
    },
  },
];