view vendor/gems/coderay-1.0.0/lib/coderay/encoders/yaml.rb @ 1058:5afaa9c17891 bibplugin_bibtex_display

Using the bibplugin_integration branch from now on.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Mon, 19 Nov 2012 19:01:01 +0000
parents cbb26bc654de
children
line wrap: on
line source
autoload :YAML, 'yaml'

module CodeRay
module Encoders
  
  # = YAML Encoder
  #
  # Slow.
  class YAML < Encoder
    
    register_for :yaml
    
    FILE_EXTENSION = 'yaml'
    
  protected
    def setup options
      super
      
      @data = []
    end
    
    def finish options
      output ::YAML.dump(@data)
    end
    
  public
    def text_token text, kind
      @data << [text, kind]
    end
    
    def begin_group kind
      @data << [:begin_group, kind]
    end
    
    def end_group kind
      @data << [:end_group, kind]
    end
    
    def begin_line kind
      @data << [:begin_line, kind]
    end
    
    def end_line kind
      @data << [:end_line, kind]
    end
    
  end
  
end
end