Anki/pylib/anki/template/__init__.py
2020-01-08 12:30:08 +10:00

9 lines
232 B
Python

from typing import Any
from .template import Template
def render(template, context=None, **kwargs) -> Any:
context = context and context.copy() or {}
context.update(kwargs)
return Template(template, context).render()