Metadata-Version: 2.1
Name: markdownparser
Version: 0.1.4
Summary: 
Home-page: https://github.com/luzhixing12345/MarkdownParser
License: MIT
Author: luzhixing12345
Author-email: luzhixing12345@163.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Project-URL: Documentation, https://luzhixing12345.github.io/MarkdownParser/
Project-URL: Repository, https://github.com/luzhixing12345/MarkdownParser
Description-Content-Type: text/markdown

# MarkdownParser

MarkdownParser 是一个 Markdown 语法解析器,用于实现md到html标签的转换

## 安装

```bash
pip install markdownparser
```

## 快速使用

```python
import MarkdownParser

html = MarkdownParser.parse('# Hello World')
print(html)

#<div class='markdown-body'><h1>Hello World!</h1></div>
```

## 不支持

- 四个空格变为代码段
- [^1]的引用方式
- Latex数学公式
- Setext 形式的标题
- 上标 / 下标 / 下划线
- SpecialTextBlock中叠加使用有可能会有bug

## 相关参考

- [Github Markdown CSS](https://cdn.jsdelivr.net/npm/github-markdown-css@4.0.0/github-markdown.css)
