Module: FunHtml::SpecElements::HTMLTableSectionElement
- Included in:
- HTMLAllElements
- Defined in:
- lib/fun_html/spec_elements.rb
Instance Method Summary collapse
- #tbody(attributes = nil, &elements) ⇒ Object
- #tfoot(attributes = nil, &elements) ⇒ Object
- #thead(attributes = nil, &elements) ⇒ Object
Instance Method Details
#tbody(attributes = nil, &elements) ⇒ Object
503 504 505 |
# File 'lib/fun_html/spec_elements.rb', line 503 def tbody(attributes = nil, &elements) write('<tbody', '</tbody>', attributes, &elements) end |
#tfoot(attributes = nil, &elements) ⇒ Object
511 512 513 |
# File 'lib/fun_html/spec_elements.rb', line 511 def tfoot(attributes = nil, &elements) write('<tfoot', '</tfoot>', attributes, &elements) end |
#thead(attributes = nil, &elements) ⇒ Object
507 508 509 |
# File 'lib/fun_html/spec_elements.rb', line 507 def thead(attributes = nil, &elements) write('<thead', '</thead>', attributes, &elements) end |