Skip to content

Commit

Permalink
Version 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
croketillo committed Dec 30, 2023
1 parent 36400dd commit 785de5e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ md-rst input.md output.rst
```

Replace input.md with the path to your input Markdown file and output.rst with the desired output reStructuredText file.
If you do not specify "output.rst" it will use the same name as the .md file.

## License
This project is licensed under the GNU-GPL3 License. Read LICENSE for more information.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Run the converter from the command line:
Replace input.md with the path to your input Markdown file and
output.rst with the desired output reStructuredText file.
If you do not specify "output.rst" it will use the same name as the .md file.

License
-------
Expand Down
1 change: 1 addition & 0 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from src.mdtorst import convert_md_to_rst

if __name__ == "__main__":
"""Main fuction to invoque mdtorst"""
convert_md_to_rst()
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup, find_packages
from sys import version_info

VERSION= '0.1.3'
VERSION= '0.1.5'
CURR_PATH = "{}{}".format(path.abspath(path.dirname(__file__)), '/')

def path_format(file_path=None, file_name=None, is_abspath=False,
Expand Down Expand Up @@ -105,6 +105,7 @@ def read(file_name=None, is_encoding=True, ignore_raises=False):
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Text Processing :: Markup :: reStructuredText',
'Topic :: Text Processing :: Markup :: Markdown',
'Topic :: Terminals',
'Topic :: Utilities',
],
Expand Down

0 comments on commit 785de5e

Please sign in to comment.