1.0.0 • Published 5 years ago

gatsby-remark-sectionize v1.0.0

Weekly downloads
68
License
MIT
Repository
github
Last release
5 years ago

gatsby-remark-sectionize

This is a very simple wrapup of remark plugin remark-sectionize, so that it can be used in Gatsby directly.

Installation

yarn add --dev gatsby-transformer-remark gatsby-remark-sectionize

Configuration

In gatsby-config.js file, write the following:

{
  resolve: `gatsby-transformer-remark`,
  options: {
    plugins: [
      `gatsby-remark-sectionize`,
    ],
  },
}