Writes a single, auto-terminated tag. @param tagName the tag name. @return this writer.
(String tagName)
| 666 | * @return this writer. |
| 667 | */ |
| 668 | public HTMLWriter tag(String tagName) |
| 669 | { |
| 670 | return tag(tagName, NO_ATTRIBUTES); |
| 671 | } |
| 672 | |
| 673 | /** |
| 674 | * Writes a single, auto-terminated tag with attributes. |
no test coverage detected