npm i rehype-figure-for-img
rehpye plugin replace rehype-figure plugin.
because it don't work at lest with me.
-
run
npm install rehype-figure-for-img
-
go to astro.config.mjs
-
edit javascript object and add
...
markdownOptions: {
render: [
'@astrojs/markdown-remark',
{
rehypePlugins: [
...
// add this
['rehype-figure-for-img'],
]
},
],
}
...