The article method (HTML5) defines external content. The external content could be a news-article from an external provider, or a text from a web log (blog), or a text from a forum, or any other content from an external source.
(self, **args)
| 1049 | self._closeTag('hgroup') |
| 1050 | |
| 1051 | def article(self, **args): |
| 1052 | """The article method (HTML5) defines external content. The external |
| 1053 | content could be a news-article from an external provider, or a text |
| 1054 | from a web log (blog), or a text from a forum, or any other content |
| 1055 | from an external source.""" |
| 1056 | self.write_tag('article', True, args) |
| 1057 | |
| 1058 | def _article(self): |
| 1059 | self._closeTag('article') |