button is the standard XHTML control. It is much like input type="button" but more versatile. It has open and close tags, and can take almost any non-form HTML structure inside.
(self, **args)
| 1876 | self._closeTag('optgroup') |
| 1877 | |
| 1878 | def button(self, **args): |
| 1879 | """button is the standard XHTML control. It is much like input |
| 1880 | type="button" but more versatile. It has open and close tags, and can |
| 1881 | take almost any non-form HTML structure inside. |
| 1882 | <www href="http://xhtml.com/en/xhtml/reference/button/" target="external"/> |
| 1883 | """ |
| 1884 | self.write_tag('button', True, args) |
| 1885 | |
| 1886 | def _button(self): |
| 1887 | self._closeTag('button') |
no test coverage detected