Python pygments.util 模块,looks_like_xml() 实例源码

我们从Python开源项目中,提取了以下50个代码示例,用于说明如何使用pygments.util.looks_like_xml()

项目:sublime-text-3-packages    作者:nickjj    | 项目源码 | 文件源码
def analyse_text(text):
        rv = VelocityLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:sublime-text-3-packages    作者:nickjj    | 项目源码 | 文件源码
def analyse_text(text):
        rv = ErbLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:sublime-text-3-packages    作者:nickjj    | 项目源码 | 文件源码
def analyse_text(text):
        rv = PhpLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:sublime-text-3-packages    作者:nickjj    | 项目源码 | 文件源码
def analyse_text(text):
        rv = SmartyLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:sublime-text-3-packages    作者:nickjj    | 项目源码 | 文件源码
def analyse_text(text):
        rv = DjangoLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:sublime-text-3-packages    作者:nickjj    | 项目源码 | 文件源码
def analyse_text(text):
        rv = 0.0
        if re.search('val \w+\s*:', text):
            rv += 0.6
        if looks_like_xml(text):
            rv += 0.2
        if '<%' in text and '%>' in text:
            rv += 0.1
        return rv
项目:sublime-text-3-packages    作者:nickjj    | 项目源码 | 文件源码
def analyse_text(text):
        rv = TeaLangLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        if '<%' in text and '%>' in text:
            rv += 0.1
        return rv
项目:sublime-text-3-packages    作者:nickjj    | 项目源码 | 文件源码
def analyse_text(text):
        rv = LassoLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:sublime-text-3-packages    作者:nickjj    | 项目源码 | 文件源码
def analyse_text(text):
        if not looks_like_xml(text) and \
           ('<!ELEMENT' in text or '<!ATTLIST' in text or '<!ENTITY' in text):
            return 0.8
项目:sublime-text-3-packages    作者:nickjj    | 项目源码 | 文件源码
def analyse_text(text):
        if looks_like_xml(text):
            return 0.45  # less than HTML
项目:flasky    作者:RoseOu    | 项目源码 | 文件源码
def analyse_text(text):
        rv = VelocityLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.5
        return rv
项目:flasky    作者:RoseOu    | 项目源码 | 文件源码
def analyse_text(text):
        rv = ErbLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:flasky    作者:RoseOu    | 项目源码 | 文件源码
def analyse_text(text):
        rv = PhpLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:flasky    作者:RoseOu    | 项目源码 | 文件源码
def analyse_text(text):
        rv = SmartyLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:flasky    作者:RoseOu    | 项目源码 | 文件源码
def analyse_text(text):
        rv = DjangoLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:flasky    作者:RoseOu    | 项目源码 | 文件源码
def analyse_text(text):
        rv = 0.0
        if re.search('val \w+\s*:', text):
            rv += 0.6
        if looks_like_xml(text):
            rv += 0.2
        if '<%' in text and '%>' in text:
            rv += 0.1
        return rv
项目:flasky    作者:RoseOu    | 项目源码 | 文件源码
def analyse_text(text):
        rv = TeaLangLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        if '<%' in text and '%>' in text:
            rv += 0.1
        return rv
项目:flasky    作者:RoseOu    | 项目源码 | 文件源码
def analyse_text(text):
        rv = LassoLexer.analyse_text(text)
        if looks_like_xml(text):
            rv += 0.5
        return rv
项目:macos-st-packages    作者:zce    | 项目源码 | 文件源码
def analyse_text(text):
        rv = VelocityLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:macos-st-packages    作者:zce    | 项目源码 | 文件源码
def analyse_text(text):
        rv = ErbLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:macos-st-packages    作者:zce    | 项目源码 | 文件源码
def analyse_text(text):
        rv = PhpLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:macos-st-packages    作者:zce    | 项目源码 | 文件源码
def analyse_text(text):
        rv = SmartyLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:macos-st-packages    作者:zce    | 项目源码 | 文件源码
def analyse_text(text):
        rv = DjangoLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:macos-st-packages    作者:zce    | 项目源码 | 文件源码
def analyse_text(text):
        rv = 0.0
        if re.search('val \w+\s*:', text):
            rv += 0.6
        if looks_like_xml(text):
            rv += 0.2
        if '<%' in text and '%>' in text:
            rv += 0.1
        return rv
项目:macos-st-packages    作者:zce    | 项目源码 | 文件源码
def analyse_text(text):
        rv = TeaLangLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        if '<%' in text and '%>' in text:
            rv += 0.1
        return rv
项目:macos-st-packages    作者:zce    | 项目源码 | 文件源码
def analyse_text(text):
        rv = LassoLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:macos-st-packages    作者:zce    | 项目源码 | 文件源码
def analyse_text(text):
        if not looks_like_xml(text) and \
           ('<!ELEMENT' in text or '<!ATTLIST' in text or '<!ENTITY' in text):
            return 0.8
项目:macos-st-packages    作者:zce    | 项目源码 | 文件源码
def analyse_text(text):
        if looks_like_xml(text):
            return 0.45  # less than HTML
项目:leetcode    作者:thomasyimgit    | 项目源码 | 文件源码
def analyse_text(text):
        rv = VelocityLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:leetcode    作者:thomasyimgit    | 项目源码 | 文件源码
def analyse_text(text):
        rv = ErbLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:leetcode    作者:thomasyimgit    | 项目源码 | 文件源码
def analyse_text(text):
        rv = PhpLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:leetcode    作者:thomasyimgit    | 项目源码 | 文件源码
def analyse_text(text):
        rv = SmartyLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:leetcode    作者:thomasyimgit    | 项目源码 | 文件源码
def analyse_text(text):
        rv = DjangoLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:leetcode    作者:thomasyimgit    | 项目源码 | 文件源码
def analyse_text(text):
        rv = 0.0
        if re.search('val \w+\s*:', text):
            rv += 0.6
        if looks_like_xml(text):
            rv += 0.2
        if '<%' in text and '%>' in text:
            rv += 0.1
        return rv
项目:leetcode    作者:thomasyimgit    | 项目源码 | 文件源码
def analyse_text(text):
        rv = TeaLangLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        if '<%' in text and '%>' in text:
            rv += 0.1
        return rv
项目:leetcode    作者:thomasyimgit    | 项目源码 | 文件源码
def analyse_text(text):
        rv = LassoLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:leetcode    作者:thomasyimgit    | 项目源码 | 文件源码
def analyse_text(text):
        if not looks_like_xml(text) and \
           ('<!ELEMENT' in text or '<!ATTLIST' in text or '<!ENTITY' in text):
            return 0.8
项目:leetcode    作者:thomasyimgit    | 项目源码 | 文件源码
def analyse_text(text):
        if looks_like_xml(text):
            return 0.45  # less than HTML
项目:chalktalk_docs    作者:loremIpsum1771    | 项目源码 | 文件源码
def analyse_text(text):
        rv = VelocityLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:chalktalk_docs    作者:loremIpsum1771    | 项目源码 | 文件源码
def analyse_text(text):
        rv = ErbLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:chalktalk_docs    作者:loremIpsum1771    | 项目源码 | 文件源码
def analyse_text(text):
        rv = PhpLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:chalktalk_docs    作者:loremIpsum1771    | 项目源码 | 文件源码
def analyse_text(text):
        rv = SmartyLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:chalktalk_docs    作者:loremIpsum1771    | 项目源码 | 文件源码
def analyse_text(text):
        rv = DjangoLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:chalktalk_docs    作者:loremIpsum1771    | 项目源码 | 文件源码
def analyse_text(text):
        rv = 0.0
        if re.search('val \w+\s*:', text):
            rv += 0.6
        if looks_like_xml(text):
            rv += 0.2
        if '<%' in text and '%>' in text:
            rv += 0.1
        return rv
项目:chalktalk_docs    作者:loremIpsum1771    | 项目源码 | 文件源码
def analyse_text(text):
        rv = TeaLangLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        if '<%' in text and '%>' in text:
            rv += 0.1
        return rv
项目:chalktalk_docs    作者:loremIpsum1771    | 项目源码 | 文件源码
def analyse_text(text):
        rv = LassoLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:chalktalk_docs    作者:loremIpsum1771    | 项目源码 | 文件源码
def analyse_text(text):
        if not looks_like_xml(text) and \
           ('<!ELEMENT' in text or '<!ATTLIST' in text or '<!ENTITY' in text):
            return 0.8
项目:chalktalk_docs    作者:loremIpsum1771    | 项目源码 | 文件源码
def analyse_text(text):
        if looks_like_xml(text):
            return 0.45  # less than HTML
项目:sublimeTextConfig    作者:luoye-fe    | 项目源码 | 文件源码
def analyse_text(text):
        rv = VelocityLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv
项目:sublimeTextConfig    作者:luoye-fe    | 项目源码 | 文件源码
def analyse_text(text):
        rv = ErbLexer.analyse_text(text) - 0.01
        if looks_like_xml(text):
            rv += 0.4
        return rv