Skip to content

Commit

Permalink
Merge pull request #4 from arterm-sedov/v0.3.0
Browse files Browse the repository at this point in the history
V0.3.2
  • Loading branch information
arterm-sedov authored Jun 27, 2022
2 parents f60fbe0 + 8e0621b commit 4ac9bcc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# MkDocs Em-Img2Fig Plugin

This [MkDocs](https://www.mkdocs.org) plugin converts markdown encoded images surrounded by two asterisks like
This [MkDocs](https://www.mkdocs.org) plugin converts markdown encoded images surrounded by two asterisks or two underscores like

```
*![An image caption](\assets\images\my-image.png)*
```
OR
```
_![An image caption](\assets\images\my-image.png)*_
_![An image caption](\assets\images\my-image.png)_
```

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def read_file(fname):

setup(
name='mkdocs-em-img2fig-plugin',
version='0.3.1',
version='0.3.2',
description='A MkDocs plugin that converts markdown encoded images surrounded by two asterisks or two underscores into <figure> elements.',
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
Expand Down
4 changes: 4 additions & 0 deletions src/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# __init__.py

__version__ = "0.3.2"
__author__ = 'Arterm Sedov'

from .plugin import Image2FigurePlugin

0 comments on commit 4ac9bcc

Please sign in to comment.