| From TFA: > My idea was that surely it's possible to write a bunch of markdown, and then have that get wrapped in a bunch of JSX tags that come pre-styled, using the styles of your existing repo? For example, what I expected was to be able to write *test* (Markdown for bold) and then get a component that looked like<Bold>test</Bold> where <Bold> is a library-defined React component It surely is possible, so perhaps I can share some links if others are wondering the same thing. If you like to roll your own solution for that, you can use the unified ecosystem: https://unifiedjs.com/ However, if you want JSX just do what everyone does and reach for MDX:
https://mdxjs.com/ > We thought this would be a no-brainer and that there would be some CMS/SSG libraries out there that made this Markdown conversion process easy and facilitated integration with any number of frontend frameworks. You thought correct: - NextJS MDX integration: https://nextjs.org/docs/pages/building-your-application/conf...
- Gatsby MDX integration: https://www.gatsbyjs.com/docs/how-to/routing/mdx/ Or check https://jamstack.org/generators/ for more options
But since you seem to like |