Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vcp_github/models/vcp_platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def _parse_github_date(self, date):
).replace(tzinfo=None)

def _parse_github_markdown(self, text):
return markdown.markdown(text)
return markdown.markdown(text, extensions=["fenced_code"])

def _update_github_repository(self, repo):
vals = {
Expand Down
Loading