An open API service indexing awesome lists of open source software.

https://github.com/zimpact/md2steam

Library to convert Markdown to Steam
https://github.com/zimpact/md2steam

converter markdown steam

Last synced: about 1 month ago
JSON representation

Library to convert Markdown to Steam

Awesome Lists containing this project

README

          

### Installing
```
pip install md2steam
```

### Example
```python
from md2steam import markdown_to_steam_bbcode

md_text = """
# Пример заголовка

Текст с **жирным**, *курсивом* и [ссылкой](https://example.com).
"""

bbcode_text = markdown_to_steam_bbcode(md_text)
print(bbcode_text)
```