⬅️ **[[Obsidian]]**
***
# Obsidian Export zu HTML Page with `obsidianhtml`
- [pypi - obsidianhtml](https://pypi.org/project/obsidianhtml/)
- [Doku - obsidianhtml](https://obsidian-html.github.io)
```sh
pip install obsidianhtml
mkdir obsidianhtml
cd .\obsidianhtml\
# Edit config.yaml
# The first folder that contains all obsidian files
# Use full path or relative path, but don't use ~/
obsidian_folder_path_str: 'D:\Nextcloud-Windows-Tobi\Produktiv\MCE-Glossar\MCE Glossar'
# The note that will be used as the index.html
# should be in obsidian_folder_path_str
# Use full path or relative path, but don't use ~/
obsidian_entrypoint_path_str: 'D:\Nextcloud-Windows-Tobi\Produktiv\MCE-Glossar\MCE Glossar\Glossar.md'
# Generator of MD and HTML
obsidianhtml -i config.yaml
# HTTP Server for localhost:8000
python -m http.server --dir output/html
```