Metadata-Version: 2.1
Name: md2steam
Version: 1.0.0
Summary: Markdown to Steam BBCode converter
Home-page: https://github.com/zImpact/md2steam
Author: Andrey Kataev
Author-email: kata3v.andrey@yandex.ru
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

### 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)
```
