-
I currently have some JSX that looks like
Where I'd like to support adding links in these education bullets using markdown. I've managed to be able to install and import
I've tried writing a custom renderer that returns a
but I'm realizing that the above renderer won't work correctly with content that has links like Is there a simple way to add styling to the elements created by |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
why not do |
Beta Was this translation helpful? Give feedback.
why not do
<p style={{fontSize: '13px', letterSpacing: '0px'}}>{value.children}</p>
?