module Rouge module Lexers class ERB < RegexLexer tag 'erb' aliases 'eruby', 'rhtml' filenames '*.erb', '*.erubis', '*.rhtml', '*.eruby' def self.analyze_text(text) return 0.4 if text =~ /<%.*%>/ end attr_reader :parent attr_reader :ruby_lexer def initialize(opts={}) @parent = opts.delete(:parent) || 'html' if @parent.is_a? String lexer_class = Lexer.find(@parent) @parent = lexer_class.new(opts) end @ruby_lexer = Ruby.new(opts) super(opts) end open = /<%%|<%=|<%#|<%-|<%/ close = /%%>|-%>|%>/ state :root do rule /<%#/, 'Comment', :comment rule open, 'Comment.Preproc', :ruby rule /.+?(?=#{open})|.+/m do delegate lexer.parent end end state :comment do rule close, 'Comment', :pop! rule /.+(?=#{close})|.+/m, 'Comment' end state :ruby do rule close, 'Comment.Preproc', :pop! rule /.+?(?=#{close})|.+/m do delegate lexer.ruby_lexer end end end end end