📜  pystache 未转义字符 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:33.479000             🧑  作者: Mango

代码示例1
>>> pystache.render('The URL {{{URL}}}', {'URL': 'http://google.com?a=3&b=3'})
u'The URL http://google.com?a=3&b=3'