I am using React Markdown (https://github.com/rexxars/react-markdown) to render markdown content.
I'd like to ask how to render specific shortcode that we define in the markdown.
For example, in my markdown content, I could insert this shortcode [[ table product="mask" ]]
Then the React Markdown component could pick it up, and render a custom component that I've defined before (such as <Table product="mask" />
).
I've read through the documentation but could not find any. Please let me know if you have experience doing this before.
Thank you so much.