Skip to content

Commit

Permalink
Adding image Information to mistune_jira
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Halbersma committed Dec 6, 2023
1 parent 07b12b6 commit 5a92ec1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions mistune_jira/jiraRenderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ def emphasis(self, token, state):
def strong(self, token, state):

return "*{}*".format(self.render_children(token, state))

def image(self, token, state):

return "!{}!".format(self.render_children(token, state))

def linebreak(self, token, state):

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "mistune_jira"
version = "2023.6.16.3"
version = "2023.12.6.0"
authors = [
{name = "Chris Halbersma", email = "[email protected]"},
]
Expand Down

0 comments on commit 5a92ec1

Please sign in to comment.