A python module that parses KAMI into HTML


Keywords
markup, kami, parser, html, markup-converter, markup-language, python
License
MIT
Install
pip install pykami==0.6.1

Documentation

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.

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

For the kami specification, read the kami-parser readme.