Sha256: b11a8e498afda825ea4a1ff54102694e0c4e0b075bcbc529d0cb1a34dad28f25

Contents?: true

Size: 639 Bytes

Versions: 48

Compression:

Stored size: 639 Bytes

Contents

# -*- coding: utf-8 -*- #
# frozen_string_literal: true

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 = lexer_option(:parent) || Lexers::HTML.new(@options)
    end

    option :parent, "the parent language (default: html)"

    start { parent.reset! }
  end
end

Version data entries

48 entries across 48 versions & 3 rubygems

Version Path
rouge-3.7.0 lib/rouge/template_lexer.rb
rouge-3.6.0 lib/rouge/template_lexer.rb
rouge-3.5.1 lib/rouge/template_lexer.rb
rouge-3.5.0 lib/rouge/template_lexer.rb
rouge-3.4.1 lib/rouge/template_lexer.rb
rouge-3.4.0 lib/rouge/template_lexer.rb
rouge-alda-3.3.0 lib/rouge/template_lexer.rb
rouge-3.3.0 lib/rouge/template_lexer.rb