Skip to content

Commit

Permalink
Release v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fasilwdr committed Aug 8, 2024
1 parent f0b4201 commit 3f65b1d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,23 +58,23 @@ 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

```bash
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

```bash
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

Expand Down
2 changes: 1 addition & 1 deletion md2indexhtml/__init__.py
Original file line number Diff line number Diff line change
@@ -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"]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 3f65b1d

Please sign in to comment.