diff options
author | rsiddharth <s@ricketyspace.net> | 2017-02-21 02:14:57 +0000 |
---|---|---|
committer | rsiddharth <s@ricketyspace.net> | 2017-02-21 02:31:32 +0000 |
commit | a8a5fcbfdbead2093ca23010ec684dc225830596 (patch) | |
tree | e2ad9427648a15755f10765abc13b04069739e4d /markdown_link_style | |
parent | 9a5fabf9c3a92680e56ff02bf1325a86f9eec551 (diff) |
mdl_style: Add LSBlockGrammar
mdl_style.LSBlockLexer uses LSBlockGrammar instead of the default
mistune.BlockGrammar.
* mdl_style.py (LSBlockGrammar): Add class
(_inline_tags, _valid_end, _block_tag): Add variables (from mistune).
(_pure_pattern): Add function (from mistune).
(LSBlockLexer): Update class.
* markdown_link_style/_version.py (__version__): Update variable.
Diffstat (limited to 'markdown_link_style')
-rw-r--r-- | markdown_link_style/_version.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown_link_style/_version.py b/markdown_link_style/_version.py index 5d3c1c3..1489137 100644 --- a/markdown_link_style/_version.py +++ b/markdown_link_style/_version.py @@ -18,4 +18,4 @@ # along with markdown-link-style (see COPYING). If not, see # <http://www.gnu.org/licenses/>. -__version__ = '0.1.0.dev2' +__version__ = '0.1.0.dev3' |