实现类似于 jinja (https://github.com/pallets/jinja) 或者 inja (https://github.com/pantor/inja) 的模板系统。
- 实现了变量替换
from demo.template_engine.render_with_string import render_with_string
result = render_with_string("HELLO,{{ name }}", {"name": "Xiaoquan"})
print(result)
输出
HELLO,Xiaoquan
见 render_with_string.py
和 render_with_tokens.py