Rune is a markdown like language which can compile down to bytecode to render a terminal CLI
The process is just like any regular programming language and is separated into 4 phases:
python3 -m venv venv
source ./venv/bin/activate
# If requirements NOT up to date
pip freeze > requirements.txt
pip install -r requirements.txt
# install rune library locally with current pulled version
pip install -e .
# runs thie .rune file specified in this file
python3 main.py- Have a live preview editor open up on browser
- Add custom elements which users can make:
- Ex: Adding an image
- importing:
add 'image'to add an image block - to use it would look like:
image[]
- importing:
- Ex: Adding an image
- Add theme support:
- Ex:
theme 'name'to add the theme with specified name
- Ex: