You can specify which components to use for rendering markdown elements using the
component_map prop.
Each key in the component_map prop is a markdown element, and the value is
a function that takes the text of the element as input and returns a Reflex component.
The codeblock and a tags are special cases. In addition to the text, they also receive a props argument containing additional props for the component.
Hello World!
This is a Subheader
And Another Subheader
Here is some code:
```python
import reflex as rx
component = rx.text("Hello World!")
```
And then some more text here, followed by a link to Reflex.