##// END OF EJS Templates
Updates for 1.2.1 release....
Updates for 1.2.1 release. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6260 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4619:144ca23442a5
r6140:3994886adcb9
Show More
span.rb
19 lines | 236 B | text/x-ruby | RubyLexer
Jean-Philippe Lang
Added syntax highlightment for repository files (using CodeRay)....
r638 module CodeRay
module Encoders
load :html
class Span < HTML
FILE_EXTENSION = 'span.html'
register_for :span
Jean-Philippe Lang
Upgrade CodeRay to 0.9.2 (#3359)....
r3478 DEFAULT_OPTIONS = HTML::DEFAULT_OPTIONS.merge \
Jean-Philippe Lang
Added syntax highlightment for repository files (using CodeRay)....
r638 :css => :style,
Jean-Philippe Lang
Upgrade CodeRay to 0.9.2 (#3359)....
r3478 :wrap => :span
Jean-Philippe Lang
Added syntax highlightment for repository files (using CodeRay)....
r638
end
end
end