Sha256: 5f5bc31cd387c6bf2ffa921cb81e5306e0ea7f997eebaa39eaa4468e4a617325
Contents?: true
Size: 629 Bytes
Versions: 14
Compression:
Stored size: 629 Bytes
Contents
module Rouge # @abstract # A TemplateLexer is one that accepts a :parent option, to specify # which language is being templated. The lexer class can specify its # own default for the parent lexer, which is otherwise defaulted to # HTML. class TemplateLexer < RegexLexer # the parent lexer - the one being templated. def parent return @parent if instance_variable_defined? :@parent @parent = option(:parent) || 'html' if @parent.is_a? ::String lexer_class = Lexer.find(@parent) @parent = lexer_class.new(self.options) end end start { parent.reset! } end end
Version data entries
14 entries across 14 versions & 1 rubygems