You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am testing markdown-to-jsx which it seems be great, but My constraint is I can't accept HTML in markdown input and I wonder if it is possible to add new rules to transform markdown syntax to react element?
I have 2 examples:
I would like transform the next markdown ++underlined text++ to <ins>underlined text</ins>,
I would like transform
--- alert
This is an alert
---
to
<div class="alert">This is an alert</div>
is it possible ? if true, how to do it?
The text was updated successfully, but these errors were encountered:
If there are any missing commonmark/gfm syntaxes I could look into adding those in the meantime though. I'm not aware of a syntax for underlining, but maybe just haven't come across it.
Hi,
I am testing
markdown-to-jsx
which it seems be great, but My constraint is I can't accept HTML in markdown input and I wonder if it is possible to add new rules to transform markdown syntax to react element?I have 2 examples:
++underlined text++
to<ins>underlined text</ins>
,to
<div class="alert">This is an alert</div>
is it possible ? if true, how to do it?
The text was updated successfully, but these errors were encountered: