Redmine/vendor/gems/coderay-0.9.7/lib/coderay/encoders/yaml.rb

23 lines
264 B
Ruby

module CodeRay
module Encoders
# = YAML Encoder
#
# Slow.
class YAML < Encoder
register_for :yaml
FILE_EXTENSION = 'yaml'
protected
def compile tokens, options
require 'yaml'
@out = tokens.to_a.to_yaml
end
end
end
end