Open
Description
Currently, I need a way to tell the plugin to not render the VSCode code block in some specific blocks. Is there any way to do this?
If not we could implement something using code fence options plus a function on the gatsby-config object, something like this:
```js{useVSCode: false}
console.log('A')
plugins: [{
resolve: `gatsby-remark-vscode`,
options: {
shouldRenderVSCodeForBlock: ({ useVSCode = true }) => useVSCode;
}
}]
I'm open to implementing this if you think it is feasible in the current architecture.