nicojensen.de/vendor/bundle/gems/rouge-3.3.0/lib/rouge/lexers/erb.rb

54 lines
1,000 B
Ruby
Raw Normal View History

2019-03-12 13:49:49 +01:00
# -*- coding: utf-8 -*- #
# frozen_string_literal: true
module Rouge
module Lexers
class ERB < TemplateLexer
title "ERB"
desc "Embedded ruby template files"
tag 'erb'
aliases 'eruby', 'rhtml'
filenames '*.erb', '*.erubis', '*.rhtml', '*.eruby'
def initialize(opts={})
@ruby_lexer = Ruby.new(opts)
super(opts)
end
start do
parent.reset!
@ruby_lexer.reset!
end
open = /<%%|<%=|<%#|<%-|<%/
close = /%%>|-%>|%>/
state :root do
rule /<%#/, Comment, :comment
rule open, Comment::Preproc, :ruby
rule /.+?(?=#{open})|.+/m do
delegate 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 @ruby_lexer
end
end
end
end
end