Method: IsoDoc::WordFunction::Body#insert_tab
- Defined in:
- lib/isodoc/word_function/body.rb
#insert_tab(out, count) ⇒ Object
50 51 52 53 54 |
# File 'lib/isodoc/word_function/body.rb', line 50 def insert_tab(out, count) out.span **attr_code(style: "mso-tab-count:#{count}") do |span| [1..count].each { span << "  " } end end |