Generate code for an element for which the end (and possibly the start) tag
is optional.
OOor-O
# File lib/cgi/html.rb, line 52
def nO_element(element, attributes = {})
s = nOE_element(element, attributes)
if block_given?
s << yield.to_s
s << "</#{element.upcase}>"
end
s
end