我有以下用于生成 HTML 的 Genshi HTML 模板片段。
<div>
${'Hello {name}'.format(name='foo')}
</div>
由于字符串中的花括号,Genshi 对此表示不满。
Traceback (most recent call last):
File "C:\Python36\lib\site-packages\genshi\input.py", line 161, in _generate
self.expat.Parse(data, False)
xml.parsers.expat.ExpatError: not well-formed (invalid token): line 137, column 34
有没有办法摆脱花括号?我应该使用比${...code...}
语法更好的东西吗?