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
Would be nice to add underline support.
To do it now you can use the following code:
importjira2markdownfromjira2markdown.elementsimportMarkupElementsfromjira2markdown.markup.text_effectsimportQuotedElement, Underlinetext="This is a +test+"classCustomUnderline(QuotedElement):
TOKEN="+"QUOTE_CHAR="<u>"END_QUOTE_CHAR="</u>"elements=MarkupElements()
elements.replace(Underline, CustomUnderline)
print(jira2markdown.convert(text, elements=elements))
The text was updated successfully, but these errors were encountered:
Would be nice to add underline support.
To do it now you can use the following code:
The text was updated successfully, but these errors were encountered: