Class: MarkdownMetrics::Elements::Inline::H6

Inherits:
Base
  • Object
show all
Defined in:
lib/markdown_metrics/elements/inline/h6.rb

Instance Attribute Summary

Attributes inherited from Base

#skip_lines_until

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#attributes, #initialize

Constructor Details

This class inherits a constructor from MarkdownMetrics::Elements::Base

Class Method Details

.match_element(line, next_line) ⇒ Object



7
8
9
# File 'lib/markdown_metrics/elements/inline/h6.rb', line 7

def self.match_element(line, next_line)
  line.to_s.match(/^\#{6} .*/)
end

Instance Method Details

#nameObject



11
12
13
# File 'lib/markdown_metrics/elements/inline/h6.rb', line 11

def name
  :h6
end

#valueObject



15
16
17
# File 'lib/markdown_metrics/elements/inline/h6.rb', line 15

def value
  current_line.gsub(/^\#{6} /, '')
end