Sophie

Sophie

distrib > Mageia > 7 > x86_64 > by-pkgid > f3f4469911842cf6aeda81fbcc0e3226 > files > 139

asciidoc-8.6.9-9.mga7.noarch.rpm

Source Hightlight Filter Test
=============================

Details of the filter can be found in
`./doc/source-highlight-filter.txt`.

[source,python]
---------------------------------------------------------------------
''' A multi-line
    comment.'''
def sub_word(mo):
    ''' Single line comment.'''
    word = mo.group('word')     # Inline comment
    if word in keywords[language]:
        return quote + word + quote
    else:
        return word
---------------------------------------------------------------------