comments.rst (cheetah3-3.1.0) | : | comments.rst (cheetah3-3.2.0) | ||
---|---|---|---|---|
Directives: Comments | Directives: Comments | |||
==================== | ==================== | |||
(comments) | ||||
The template: | The template: | |||
:: | :: | |||
Text before the comment. | Text before the comment. | |||
## The comment. | ## The comment. | |||
Text after the comment. | Text after the comment. | |||
#* A multi-line comment spanning several lines. | #* A multi-line comment spanning several lines. | |||
It spans several lines, too. | It spans several lines, too. | |||
*# | *# | |||
skipping to change at line 41 | skipping to change at line 39 | |||
write('Text before the comment.\n') | write('Text before the comment.\n') | |||
# The comment. | # The comment. | |||
write('Text after the comment.\n') | write('Text after the comment.\n') | |||
# A multi-line comment spanning several lines. | # A multi-line comment spanning several lines. | |||
# It spans several lines, too. | # It spans several lines, too. | |||
write('\nText after the multi-line comment.\n') | write('\nText after the multi-line comment.\n') | |||
Docstring and header comments | Docstring and header comments | |||
----------------------------- | ----------------------------- | |||
(comments.docstring) | ||||
The template: | The template: | |||
:: | :: | |||
##doc: .respond() method comment. | ##doc: .respond() method comment. | |||
##doc-method: Another .respond() method comment. | ##doc-method: Another .respond() method comment. | |||
##doc-class: A class comment. | ##doc-class: A class comment. | |||
##doc-module: A module comment. | ##doc-module: A module comment. | |||
##header: A header comment. | ##header: A header comment. | |||
End of changes. 2 change blocks. | ||||
4 lines changed or deleted | 0 lines changed or added |