Metadata-Version: 2.1
Name: htmlgeng
Version: 0.1.2
Summary: Description
Home-page: https://github.com/GaetanDesrues/htmlgen
Author: Gaetan Desrues
Author-email: gdesrues@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# htmlgen

![](rsc/ex.png)

As easy as 
```python
gen = HtmlGenerator()

with gen.row as r:
    r(0).markdown("# Hello\n- List 1\n- *List 2*")
    r(0).latex(rf"\sum_i^n {__file__[10]}\left(i\right) = \mathbf(E)")
    r(0).markdown("That was an equation, like this one: $$x^2$$")
    r(1).image(rsc.img)
```



## Install
```bash
pip install htmlgen
pip install -e <path-to-repo>/htmlgen
pip install git+ssh://git@github.com/GaetanDesrues/htmlgen.git
```


