I have some markdown that I want to convert to plain text. For example, const markdown = 'Markdown **is** _great_. `But` I want\n```\nplain text\n```' markdownT...
I want to create a local React + TypeScript library and be able to use it across my React projects by installing it like I would install any other npm package. ...