Class: Rouge::Lexers::Haml

Inherits:
RegexLexer show all
Includes:
Indentation
Defined in:
lib/rouge/lexers/haml.rb

Overview

A lexer for the Haml templating system for Ruby.

See Also:

Constant Summary

Constants inherited from RegexLexer

RegexLexer::MAX_NULL_SCANS

Constants included from Token::Tokens

Token::Tokens::Num, Token::Tokens::Str

Instance Attribute Summary collapse

Attributes inherited from Rouge::Lexer

#options

Instance Method Summary collapse

Methods included from Indentation

#indentation, #reset!, #starts_block

Methods inherited from RegexLexer

append, #delegate, #goto, #group, #groups, #in_state?, #pop!, prepend, #push, #recurse, replace_state, #reset!, #reset_stack, #stack, start, start_procs, state, #state, #state?, state_definitions, states, #step, #stream_tokens, #token

Methods inherited from Rouge::Lexer

aliases, all, #as_bool, #as_lexer, #as_list, #as_string, #as_token, #bool_option, continue_lex, #continue_lex, debug_enabled?, demo, demo_file, desc, detect?, detectable?, disable_debug!, enable_debug!, filenames, find, find_fancy, guess, guess_by_filename, guess_by_mimetype, guess_by_source, guesses, #hash_option, lex, #lex, #lexer_option, #list_option, lookup_fancy, mimetypes, option, option_docs, #reset!, #stream_tokens, #string_option, tag, #tag, title, #token_option, #with

Methods included from Token::Tokens

token

Constructor Details

#initialize(opts = {}) ⇒ Haml

Returns a new instance of Haml.

Parameters:

  • opts (Hash) (defaults to: {})

    a customizable set of options

Options Hash (opts):

  • :filters (Object)

    A hash of filter name to lexer of how various filters should be highlighted. By default, :javascript, :css, :ruby, and :erb are supported.



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/rouge/lexers/haml.rb', line 26

def initialize(opts={})
  super

  default_filters = {
    'javascript' => Javascript.new(options),
    'css' => CSS.new(options),
    'ruby' => ruby,
    'erb' => ERB.new(options),
    'markdown' => Markdown.new(options),
    'sass' => Sass.new(options),
    # TODO
    # 'textile' => Textile.new(options),
    # 'maruku' => Maruku.new(options),
  }

  @filters = hash_option(:filters, default_filters) do |v|
    as_lexer(v) || PlainText.new(@options)
  end
end

Instance Attribute Details

#filtersObject (readonly)

Returns the value of attribute filters.



21
22
23
# File 'lib/rouge/lexers/haml.rb', line 21

def filters
  @filters
end

Instance Method Details

#htmlObject



50
51
52
# File 'lib/rouge/lexers/haml.rb', line 50

def html
  @html ||= HTML.new(@options)
end

#rubyObject



46
47
48
# File 'lib/rouge/lexers/haml.rb', line 46

def ruby
  @ruby ||= Ruby.new(@options)
end

#ruby!(state) ⇒ Object



54
55
56
57
# File 'lib/rouge/lexers/haml.rb', line 54

def ruby!(state)
  ruby.reset!
  push state
end