The section method (HTML5) defines defines sections in a document. Such as chapters, headers, footers, or any other sections of the document.
(self, **args)
| 1075 | self._closeTag('footer') |
| 1076 | |
| 1077 | def section(self, **args): |
| 1078 | """The section method (HTML5) defines defines sections in a document. |
| 1079 | Such as chapters, headers, footers, or any other sections of the |
| 1080 | document.""" |
| 1081 | self.write_tag('section', True, args) |
| 1082 | |
| 1083 | def _section(self): |
| 1084 | self._closeTag('section') |
no test coverage detected