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
The issue is that when we pass any data that can be seen as markdown string we receive strange behaviour
.replaceAll("([*_~>#-.\\[\\]()|`])", "\\\\$1")
Something like that should do that trick, but adding it by default into BoldText and others will make user depend only on styling tools provided by library, so instead it would be nice to have possibility to write something like
new IgnoreMarkdownText("*italic*")
And receive output like
\*italic\*
Thanks in advance
The text was updated successfully, but these errors were encountered:
Imaging you have code like this
new ItalicText("*italic*")
After processing you will receive
italic
The issue is that when we pass any data that can be seen as markdown string we receive strange behaviour
Something like that should do that trick, but adding it by default into BoldText and others will make user depend only on styling tools provided by library, so instead it would be nice to have possibility to write something like
new IgnoreMarkdownText("*italic*")
And receive output like
\*italic\*
Thanks in advance
The text was updated successfully, but these errors were encountered: