Skip to content

Commit

Permalink
Separate plaintext mode callbacks in md2po (#189)
Browse files Browse the repository at this point in the history
* Separate plaintext mode callbacks in `md2po`
  • Loading branch information
mondeja committed Nov 11, 2021
1 parent 54be2fc commit 7578f79
Show file tree
Hide file tree
Showing 5 changed files with 176 additions and 162 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.74
current_version = 0.3.75

[bumpversion:file:mdpo/__init__.py]

Expand Down
16 changes: 8 additions & 8 deletions docs/pre-commit-hooks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ so you don't need to specify them.
.. code-block:: yaml
- repo: https://github.com/mondeja/mdpo
rev: v0.3.74
rev: v0.3.75
hooks:
- id: md2po
args:
Expand All @@ -32,7 +32,7 @@ so you don't need to specify them.
.. code-block:: yaml
- repo: https://github.com/mondeja/mdpo
rev: v0.3.74
rev: v0.3.75
hooks:
- id: md2po
files: ^README\.md
Expand All @@ -53,7 +53,7 @@ po2md
.. code-block:: yaml
- repo: https://github.com/mondeja/mdpo
rev: v0.3.74
rev: v0.3.75
hooks:
- id: po2md
args:
Expand All @@ -68,7 +68,7 @@ po2md
.. code-block:: yaml
- repo: https://github.com/mondeja/mdpo
rev: v0.3.74
rev: v0.3.75
hooks:
- id: po2md
files: ^README\.md
Expand All @@ -91,7 +91,7 @@ md2po2md
.. code-block:: yaml
- repo: https://github.com/mondeja/mdpo
rev: v0.3.74
rev: v0.3.75
hooks:
- id: md2po2md
args:
Expand All @@ -108,7 +108,7 @@ md2po2md
.. code-block:: yaml
- repo: https://github.com/mondeja/mdpo
rev: v0.3.74
rev: v0.3.75
hooks:
- id: md2po2md
files: ^README\.md
Expand All @@ -133,7 +133,7 @@ mdpo2html
.. code-block:: yaml
- repo: https://github.com/mondeja/mdpo
rev: v0.3.74
rev: v0.3.75
hooks:
- id: mdpo2html
args:
Expand All @@ -148,7 +148,7 @@ mdpo2html
.. code-block:: yaml
- repo: https://github.com/mondeja/mdpo
rev: v0.3.74
rev: v0.3.75
hooks:
- id: mdpo2html
files: ^README\.html
Expand Down
2 changes: 1 addition & 1 deletion mdpo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from mdpo.po2md import pofile_to_markdown


__version__ = '0.3.74'
__version__ = '0.3.75'
__title__ = 'mdpo'
__description__ = ('Markdown files translation using PO files.')
__all__ = (
Expand Down

0 comments on commit 7578f79

Please sign in to comment.