Skip to content

Commit

Permalink
Add Screenshots of available themes
Browse files Browse the repository at this point in the history
- Added readme on setup.py
  • Loading branch information
fasilwdr committed Aug 8, 2024
1 parent ae1fc58 commit 3aa4eb0
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 3 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,20 @@ Example:
md2indexhtml path/to/yourfile.md path/to/output/dir --template path/to/template.html --css path/to/custom.css --title "My Documentation"
```

## Themes

### Default Theme

![Default](screenshots/index.jpg)

### GoDocs Theme

![GoDocs](screenshots/godocs.jpg)

### DocBox Theme

![GoDocs](screenshots/docbox.jpg)

# Python API

You can also use the package programmatically in your Python code:
Expand Down
2 changes: 1 addition & 1 deletion md2indexhtml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .converter import convert_md_to_html

# Version of the package
__version__ = "0.1.0"
__version__ = "0.1.1"

# Define what is available when the package is imported
__all__ = ["convert_md_to_html"]
Binary file added screenshots/docbox.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/godocs.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/index.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@

setup(
name='md2indexhtml',
version='0.1.0',
description='Convert Markdown files to index.html for Odoo modules',
version='0.1.1',
description='Convert Markdown files to index.html',
author='Your Name',
author_email='[email protected]',
url='https://github.com/fasilwdr/md2indexhtml',
packages=find_packages(),
install_requires=[
'markdown',
],
readme="README.md",
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit 3aa4eb0

Please sign in to comment.