gatsby-remark-sub-sup
v1.0.0
Published
Custom syntax to parse subscript and superscript. Rehype compatible (using <sub> and <sup>)
Downloads
10
Maintainers
Readme
gatsby-remark-sub-sup
Custom syntax to parse subscript and superscript. Rehype compatible (using <sub>
and <sup>
). Using remark-sub-super
Install
npm install --save gatsby-remark-sub-sup
How to use
In your gatsby-config.js
plugins: [
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
"gatsby-remark-sub-sup"
],
},
},
];