Would there be a way to support inline components? i.e. something like:
Markdown:
You can --MyComponent text="click"-- me
React:
MyComponent = (props) => <button onClick="....">{props.text}</button>
Result:
You can <button onClick="....">click</button> me