YAML Encoder

Slow.

Methods
Constants
FILE_EXTENSION = 'yaml'
Public Instance methods
begin_group(kind)
# File lib/coderay/encoders/yaml.rb, line 31
    def begin_group kind
      @data << [:begin_group, kind]
    end
begin_line(kind)
# File lib/coderay/encoders/yaml.rb, line 39
    def begin_line kind
      @data << [:begin_line, kind]
    end
end_group(kind)
# File lib/coderay/encoders/yaml.rb, line 35
    def end_group kind
      @data << [:end_group, kind]
    end
end_line(kind)
# File lib/coderay/encoders/yaml.rb, line 43
    def end_line kind
      @data << [:end_line, kind]
    end
text_token(text, kind)
# File lib/coderay/encoders/yaml.rb, line 27
    def text_token text, kind
      @data << [text, kind]
    end