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
{{ message }}
This repository has been archived by the owner on Jul 27, 2020. It is now read-only.
Regular expressions are not usable at all. I've tried to parse the JIRA format myself, but there is no specification, just some very simple examples. There are some implicit rules regarding nesting, no difference between opening and ending "tags". No grammar available at all and a lot of corner cases, as far as I could see.
I think the best approach is to have JIRA render the HTML (also possible via the API), and then convert the HTML to Markdown. In general, that is very hard, but in this case good to do since JIRA only uses a small subset of HTML.
From the example page:
converts to
So
*no*
is changed to**no**
and_formatting_
to*formatting*
.I expected everything between the
{noformat}
to remain the same.The text was updated successfully, but these errors were encountered: