gatsby-remark-sectionize
v1.0.0
Published
Gatsby plugin of remark-sectionize, which wrap content below each heading in a <section> element
Downloads
50
Maintainers
Readme
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`,
],
},
}