##// END OF EJS Templates
Replaced french word "anonyme" at app/views/wiki/annotate.rhtml with label_user_anonymous (#8994)....
Replaced french word "anonyme" at app/views/wiki/annotate.rhtml with label_user_anonymous (#8994). Contributed by Tom Rochette. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6409 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4619:144ca23442a5
r6289:f6a43a61da1f
Show More
div.rb
19 lines | 232 B | text/x-ruby | RubyLexer
module CodeRay
module Encoders
load :html
class Div < HTML
FILE_EXTENSION = 'div.html'
register_for :div
DEFAULT_OPTIONS = HTML::DEFAULT_OPTIONS.merge \
:css => :style,
:wrap => :div
end
end
end