diff options
author | rsiddharth <s@ricketyspace.net> | 2017-02-19 01:47:54 +0000 |
---|---|---|
committer | rsiddharth <s@ricketyspace.net> | 2017-02-19 01:47:54 +0000 |
commit | 74b4642a96ebbb4b8f6860abb2e782f72f2fc2af (patch) | |
tree | 83db9af698f268df69763e1ef743e138e461f622 /markdown_link_style/_version.py | |
parent | fb0a03dfabb29dae899c7d2f1dc94ff38a3240c6 (diff) |
Add initial version the script.
* markdown_link_style/_version.py (__version__): Update version.
* markdown_link_style/logging.py: New module
* mdl_style.py (logger): Add variable.
(LSBlockLexer, LSInlineLexer, LSRenderer, LSMarkdown)
(LinkStyler): Add classes.
(_mdl_stylize, _get_args): Add functions.
(main): Update function.
* tests/__init__.py: Add file.
* tests/data/autolink_00-expected.md: Add file.
* tests/data/autolink_00.md: Add file.
* tests/data/footnote_link_style_00-expected.md: Add file.
* tests/data/footnote_link_style_00.md: Add file.
* tests/data/inline_link_style_00-expected.md: Add file.
* tests/data/inline_link_style_00.md: Add file.
* tests/test_mdl_style.py (TestMdlStyle): Remove class.
(TestLSRendererIL, TestLSRendererFN): Add classes.
Diffstat (limited to 'markdown_link_style/_version.py')
-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 6ae8753..1562223 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.dev0' +__version__ = '0.1.0.dev1' |