Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 553 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 553 Bytes

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`],
    },
  },
];