Sha256: 249072d0963fdaa5e2dde0926eb3c7a29bc89b2312c2272b3862fa04454b7023
Contents?: true
Size: 1008 Bytes
Versions: 44
Compression:
Stored size: 1008 Bytes
Contents
# -*- 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 %r/<%#/, Comment, :comment rule open, Comment::Preproc, :ruby rule %r/.+?(?=#{open})|.+/m do delegate parent end end state :comment do rule close, Comment, :pop! rule %r/.+?(?=#{close})|.+/m, Comment end state :ruby do rule close, Comment::Preproc, :pop! rule %r/.+?(?=#{close})|.+/m do delegate @ruby_lexer end end end end end
Version data entries
44 entries across 44 versions & 2 rubygems