@argdown/gatsby-remark-plugin
v1.7.4
Published
Turns Argdown code fences into svg argument maps
Downloads
5
Maintainers
Readme
@argdown/gatsby-remark-plugin
This package is part of the Argdown project and adds Argdown support to Gatsby.
For a more detailed documentation, read the guide on how to use Argdown in Markdown.
Installation
yarn add @argdown/gatsby-remark-plugin
Setup
module.exports = {
plugins: [
{
resolve: "gatsby-plugin-mdx",
options: {
gatsbyRemarkPlugins: [
{
resolve: "@argdown/gatsby-remark-plugin",
options: {
argdownConfig: {
webComponent: {
withoutHeader: true
}
}
}
}
]
}
}
]
};
module.exports = {
plugins: [
{
resolve: "gatsby-transformer-remark",
options: {
plugins: [
{
resolve: "@argdown/gatsby-remark-plugin",
options: {
argdownConfig: {
webComponent: {
withoutHeader: true
}
}
}
}
]
}
}
]
};