npm.io
0.6.1 • Published 5 years ago

gatsby-remark-inline-codesandbox

Licence
MIT
Version
0.6.1
Deps
2
Size
3 kB
Vulns
0
Weekly
0
Stars
283
DeprecatedThis package is deprecated

gatsby-remark-inline-codesandbox

Installation

yarn add gatsby-remark-inline-codesandbox

Setup

gatsby-plugin-mdx

module.exports = {
  plugins: [
    {
      resolve: 'gatsby-plugin-mdx',
      options: {
        gatsbyRemarkPlugins: [
          {
            resolve: 'gatsby-remark-inline-codesandbox',
            options: {
              mode: 'button',
            },
          },
        ],
      },
    },
  ],
};

gatsby-transformer-remark

module.exports = {
  plugins: [
    {
      resolve: 'gatsby-transformer-remark',
      options: {
        plugins: [
          {
            resolve: 'gatsby-remark-inline-codesandbox',
            options: {
              mode: 'button',
            },
          },
        ],
      },
    },
  ],
};

Usage & Documentation

See the remark-codesandbox package for more information.

Keywords