Files
Web-NibblePoker/website/renderers/paragraph.py
Herwin Bozet a930331d6c Removed old PHP code, migrated to Python and Flask
Update .dockerignore, .env, and 503 more files...
2024-10-20 16:20:37 +02:00

9 lines
193 B
Python

from flask import render_template
def render_paragraph(inner_html: str) -> str:
return render_template(
"elements/paragraph.jinja",
paragraph_inner_html=inner_html,
)