https://github.com/andrewpetrochenkov/markdown-lists.py
render markdown nested lists
https://github.com/andrewpetrochenkov/markdown-lists.py
markdown python
Last synced: 10 months ago
JSON representation
render markdown nested lists
- Host: GitHub
- URL: https://github.com/andrewpetrochenkov/markdown-lists.py
- Owner: andrewpetrochenkov
- License: unlicense
- Created: 2019-03-30T07:48:59.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-01T00:49:04.000Z (about 3 years ago)
- Last Synced: 2025-02-26T09:42:00.078Z (10 months ago)
- Topics: markdown, python
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://pypi.org/project/markdown-lists/)
[](https://unlicense.org/)
[](https://github.com/andrewp-as-is/markdown-lists.py/actions)
### Installation
```bash
$ [sudo] pip install markdown-lists
```
#### Examples
```python
>>> import markdown_lists
>>> lists = ["item1",["subitem11","subitem12"],"item2"]
>>> markdown_lists.render(lists)
+ item1
+ subitem11
+ subitem12
+ item2
```