Sophie

Sophie

distrib > Mandriva > 2010.0 > x86_64 > by-pkgid > 99bb6036221ce0cfc30ccb1c651d123a > files > 88

asciidoc-8.2.7-3mdv2010.0.noarch.rpm

Code Filter Test
================

[python]
code~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
''' 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
code~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~