Metadata-Version: 2.1
Name: pyTRML
Version: 0.0.0
Summary: Terminal Rendering Markup Language
Home-page: UNKNOWN
Author: GrandMoff100
Author-email: nlarsen23.student@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: colorama

# CTML
(Color Text Markup Language)


```python

from trml import format


string = """
My Normal Text
<text color="red" on="black">Some characters</text>
"""


colored = format(string)

print(colored)

```

![Example1](https://raw.githubusercontent.com/GrandMoff100/PyTRML/master/images/example1.png)


