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