Redmine/vendor/plugins/coderay-0.7.6.227/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