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
- Host: GitHub
- URL: https://github.com/zimpact/md2steam
- Owner: zImpact
- License: mit
- Created: 2025-03-06T12:11:20.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-06T12:33:48.000Z (about 1 year ago)
- Last Synced: 2025-03-06T12:52:51.325Z (about 1 year ago)
- Topics: converter, markdown, steam
- Language: Python
- Homepage: https://pypi.org/project/md2steam/
- Size: 0 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
```