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
Ingatsby-config.js
file, write the following:{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
`gatsby-remark-sectionize`,
],
},
}