diff --git a/README.md b/README.md index d076a61..659c49b 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ md2indexhtml path/to/yourfile.md path/to/output/dir --template path/to/template. md2indexhtml README.md output --title "Default Theme" ``` -![Default](screenshots/index.jpg) +![Default](https://raw.githubusercontent.com/fasilwdr/md2indexhtml/main/screenshots/index.jpg) ### GoDocs Theme @@ -66,7 +66,7 @@ md2indexhtml README.md output --title "Default Theme" md2indexhtml README.md output --title "GoDocs Theme" --template godocs.html ``` -![GoDocs](screenshots/godocs.jpg) +![GoDocs](https://raw.githubusercontent.com/fasilwdr/md2indexhtml/main/screenshots/godocs.jpg) ### DocBox Theme @@ -74,7 +74,7 @@ md2indexhtml README.md output --title "GoDocs Theme" --template godocs.html md2indexhtml README.md output --title "DocBox Theme" --template docbox.html ``` -![GoDocs](screenshots/docbox.jpg) +![GoDocs](https://raw.githubusercontent.com/fasilwdr/md2indexhtml/main/screenshots/docbox.jpg) # Python API diff --git a/md2indexhtml/__init__.py b/md2indexhtml/__init__.py index 8bcb06b..9c0884e 100644 --- a/md2indexhtml/__init__.py +++ b/md2indexhtml/__init__.py @@ -1,7 +1,7 @@ from .converter import convert_md_to_html # Version of the package -__version__ = "0.1.2" +__version__ = "0.1.3" # Define what is available when the package is imported __all__ = ["convert_md_to_html"] diff --git a/setup.py b/setup.py index c0d50fd..e998c1e 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='md2indexhtml', - version='0.1.2', + version='0.1.3', description='Convert Markdown files to index.html', long_description=long_description, long_description_content_type='text/markdown',