Skip to content

Commit

Permalink
Fix log rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Nov 19, 2017
1 parent f4650fd commit aed5151
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

> Released Nov 19, 2017
- **FIX**: Log rendering.

# EasyDiff 2.0.1

> Released Nov 19, 2017
- **FIX**: Remove workarounds.
- **FIX**: Update dependencies to the latest.

Expand Down
4 changes: 2 additions & 2 deletions support.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def run(self, page):
import mdpopups
import pymdownx
has_phantom_support = (mdpopups.version() >= (1, 10, 0)) and (int(sublime.version()) >= 3124)
fmatter = mdpopups.format_frontmatter(frontmatter) if pymdownx.version[:3] >= (4, 3, 0) else ''
fmatter = mdpopups.format_frontmatter(frontmatter) if pymdownx.version_info[:3] >= (4, 3, 0) else ''
except Exception:
fmatter = ''
has_phantom_support = False
Expand Down Expand Up @@ -197,7 +197,7 @@ def run(self):
import mdpopups
import pymdownx
has_phantom_support = (mdpopups.version() >= (1, 10, 0)) and (int(sublime.version()) >= 3124)
fmatter = mdpopups.format_frontmatter(frontmatter) if pymdownx.version[:3] >= (4, 3, 0) else ''
fmatter = mdpopups.format_frontmatter(frontmatter) if pymdownx.version_info[:3] >= (4, 3, 0) else ''
except Exception:
fmatter = ''
has_phantom_support = False
Expand Down

0 comments on commit aed5151

Please sign in to comment.