Metadata-Version: 2.1
Name: pykami
Version: 0.3.0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Text Processing :: Markup
Classifier: Development Status :: 4 - Beta
Requires-Dist: maturin
License-File: LICENSE
Summary: A python module that parses KAMI into HTML
Keywords: markup,kami,parser,html
Home-Page: https://github.com/lilith-in-starlight/pykami
Author: Katie Ampersand <katie-and@ampersandia.net>
Author-email: Katie Ampersand <katie-and@ampersandia.net>
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Source Code, https://github.com/lilith-in-starlight/pykami

# Pykami

A python module that parses kami into HTML.

## Usage

Simply run `pykami.parse()`, which takes a string containing a KAMI input and outputs a string containing the corresponding HTML output.

```python
import pykami
print(pykami.parse("*bold text*")) // <b >bold text</b>
```

For the kami specification, read the [kami-parser readme](https://github.com/lilith-in-starlight/kami-parser/).

