Method: NanDoc::StreamColorizer::State#colors

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

#colorsObject



174
175
176
177
178
179
180
181
182
# File 'lib/nandoc/support/stream-colorizer.rb', line 174

def colors
  @colors ||= begin
    if style.nil?
      []
    else
      parent.stylesheet[style] or style_not_found_failure
    end
  end
end