Sophie

Sophie

distrib > Mandriva > 2010.0 > x86_64 > media > main-release > by-pkgid > 99bb6036221ce0cfc30ccb1c651d123a > files > 94

asciidoc-8.2.7-3mdv2010.0.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
---------------------------------------------------------------------