Method: NanDoc::StreamColorizer::State#style

Defined in:
lib/nandoc/support/stream-colorizer.rb

#style(*a) ⇒ Object



183
184
185
186
187
188
189
# File 'lib/nandoc/support/stream-colorizer.rb', line 183

def style *a
  case a.size
  when 0; @style
  when 1; @style = a.first
  else fail('no')
  end
end