Sophie

Sophie

distrib > Mageia > 5 > i586 > media > core-release > by-pkgid > 6696e3f1b579dd11b08c5d59b32657b0 > files > 139

asciidoc-8.6.9-3.mga5.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
---------------------------------------------------------------------