Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
只是从 Django 模板转换为 jinja2 文件,我想知道如何将文本从小写或大写字母转换为标题格式。我想做这样的事情。
{{sometext |title }}
谢谢
事实证明它也像 Django 模板一样工作
{{some_object.some_variable_thats_a_string_or_unicode|title }}