Я хочу положить кусочки HTML в шаблоне переменных.Примерно так:
>>>t = django.template.Template("<ul>{{ title }}<\ul>: {{ story }}")
>>>c = django.template.Context({"title":"This is the title",r"Line 1.<br />Line 2."})
>>>print t.render(c)
<ul>This is the title<\ul>: Line 1.<br />Line 2.
Я ожидал вывод примерно так:
<ul>This is the title<\ul>: Line 1.<br />Line 2.
Как я могу вставить HTML в переменные шаблона?