Skip to content

Commit

Permalink
Upgrade to 4.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Mar 30, 2018
1 parent 12e6980 commit 11633ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
PyMdown Extensions for Sublime Text

Current version: 4.9.1
Current version: 4.9.2
2 changes: 1 addition & 1 deletion st3/pymdownx/__version__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Version."""

# (major, minor, micro, release type, pre-release build, post-release build)
version_info = (4, 9, 1, 'final', 0, 0)
version_info = (4, 9, 2, 'final', 0, 0)


def _version():
Expand Down
2 changes: 1 addition & 1 deletion st3/pymdownx/tasklist.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from markdown.treeprocessors import Treeprocessor
import re

RE_CHECKBOX = re.compile(r"^(?P<checkbox> *\[(?P<state>(?:x|X| ){1})\] +)(?P<line>.*)")
RE_CHECKBOX = re.compile(r"^(?P<checkbox> *\[(?P<state>(?:x|X| ){1})\] +)(?P<line>.*)", re.DOTALL)


def get_checkbox(state, custom_checkbox=False, clickable_checkbox=False):
Expand Down

0 comments on commit 11633ec

Please sign in to comment.