Compare commits

...

3 Commits

Author SHA1 Message Date
AlexVonB
8f047753ae Merge branch 'develop' 2022-08-28 22:03:22 +02:00
AlexVonB
50b3b73a8f bump to v0.11.4 2022-08-28 22:03:14 +02:00
AlexVonB
0310216877 fixed readme and added linter to detect this earlier 2022-08-28 22:02:49 +02:00
3 changed files with 6 additions and 2 deletions

View File

@@ -175,7 +175,7 @@ change:
Command Line Interface Command Line Interface
===================== ======================
Use ``markdownify example.html > example.md`` or pipe input from stdin Use ``markdownify example.html > example.md`` or pipe input from stdin
(``cat example.html | markdownify > example.md``). (``cat example.html | markdownify > example.md``).

View File

@@ -9,7 +9,7 @@ read = lambda filepath: codecs.open(filepath, 'r', 'utf-8').read()
pkgmeta = { pkgmeta = {
'__title__': 'markdownify', '__title__': 'markdownify',
'__author__': 'Matthew Tretter', '__author__': 'Matthew Tretter',
'__version__': '0.11.3', '__version__': '0.11.4',
} }
read = lambda filepath: codecs.open(filepath, 'r', 'utf-8').read() read = lambda filepath: codecs.open(filepath, 'r', 'utf-8').read()

View File

@@ -5,6 +5,10 @@ envlist = py38
deps = deps =
flake8 flake8
pytest pytest
restructuredtext_lint
Pygments
commands = commands =
flake8 --ignore=E501,W503 markdownify tests flake8 --ignore=E501,W503 markdownify tests
pytest pytest
restructuredtext-lint README.rst