(self)
| 777 | self.write_tag_noWhitespace('h1', True, args) |
| 778 | |
| 779 | def _h1(self): |
| 780 | self._closeTag_noWhitespace('h1') |
| 781 | self.newLine() # Optional newline is self.compact is False. |
| 782 | |
| 783 | def h1_(self, s, **args): |
| 784 | """The `h1_` to `h6_` tags define headers, combining the opening and |
no test coverage detected