Method: IsoDoc::Function::Utils#insert_tab
- Defined in:
- lib/isodoc/function/utils.rb
#insert_tab(out, count) ⇒ Object
26 27 28 29 |
# File 'lib/isodoc/function/utils.rb', line 26 def insert_tab(out, count) tab = %w(Hans Hant).include?(@script) ? " " : "  " [1..count].each { out << tab } end |