Method: Table#th
- Defined in:
- lib/make/table.rb
#th(*ths) ⇒ Object
Makes custom headers
125 126 127 128 129 130 |
# File 'lib/make/table.rb', line 125 def th *ths @thead='' ths.each { |custom_header| @thead+="\n\t\t\t<th>%s</th>" % custom_header } @run_make_head=false return self end |