A simple, yet effective way of adding some dynamic properties to you md.
Table of Contents
pip install readmint
# import the render function
In [1]: from readmint.lib.renderer import render_text, render_file
import textwrap
print("hello world")
# render text just rendera passed text
In [2]: render_text(
textwrap.dedent("""
dummy text
==========
And this is a code block
```readmint[python@local]
1+1
```
""")
)
Out[2]:
# dummy text
And this is a code block
```python
In [1]: 1+1
Out[1]: 2
## License
`readmint` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.