本文整理汇总了Python中jinja2.Markup.lower方法的典型用法代码示例。如果您正苦于以下问题:Python Markup.lower方法的具体用法?Python Markup.lower怎么用?Python Markup.lower使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jinja2.Markup
的用法示例。
在下文中一共展示了Markup.lower方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: slugify
# 需要导入模块: from jinja2 import Markup [as 别名]
# 或者: from jinja2.Markup import lower [as 别名]
def slugify(value, regex_subs=()):
"""
Normalizes string, converts to lowercase, removes non-alpha characters,
and converts spaces to hyphens.
Took from Django sources.
"""
# TODO Maybe steal again from current Django 1.5dev
value = Markup(value).striptags()
# value must be unicode per se
import unicodedata
from unidecode import unidecode
# unidecode returns str in Py2 and 3, so in Py2 we have to make
# it unicode again
value = unidecode(value)
if isinstance(value, six.binary_type):
value = value.decode('ascii')
# still unicode
value = unicodedata.normalize('NFKD', value)
for src, dst in regex_subs:
value = re.sub(src, dst, value, flags=re.IGNORECASE)
# convert to lowercase
value = value.lower()
# we want only ASCII chars
value = value.encode('ascii', 'ignore').strip()
# but Pelican should generally use only unicode
return value.decode('ascii')