Class: Kitchen::ExampleElement
- Inherits:
-
ElementBase
- Object
- ElementBase
- Kitchen::ExampleElement
- Defined in:
- lib/kitchen/example_element.rb
Overview
An element for an example
Instance Attribute Summary
Attributes inherited from ElementBase
#ancestors, #document, #enumerator_class, #search_query_that_found_me, #short_type
Class Method Summary collapse
-
.short_type ⇒ Symbol
Returns the short type.
Instance Method Summary collapse
-
#initialize(node:, document: nil) ⇒ ExampleElement
constructor
Creates a new
ExampleElement
. -
#titles_to_rename ⇒ ElementEnumerator
Returns the an enumerator for titles.
Methods inherited from ElementBase
#[], #[]=, #add_ancestor, #add_ancestors, #add_class, #ancestor, #ancestor_elements, #append, #as_enumerator, #children, #classes, #clone, #config, #contains?, #content, #copied_id, #copy, #count_in, #cut, #data_type, descendant, descendant!, #element_children, #first, #first!, #has_ancestor?, #has_class?, #href, #href=, #id, #id=, #inner_html=, #inspect, #is?, is_the_element_class_for?, #key?, #mark_as_current_location!, #name, #name=, #pages, #pantry, #parent, #paste, #path, #preceded_by_text, #prepend, #previous, #raw, #raw_search, #remember_that_a_sub_element_was_counted, #remove_attribute, #remove_class, #replace_children, #search, #search_history, #selectors, #set, #sub_header_name, #target_label, #text, #to_html, #to_s, #to_xhtml, #to_xml, #trash, #uncount, #wrap, #wrap_children
Methods included from Mixins::BlockErrorIf
Constructor Details
#initialize(node:, document: nil) ⇒ ExampleElement
Creates a new ExampleElement
13 14 15 16 17 |
# File 'lib/kitchen/example_element.rb', line 13 def initialize(node:, document: nil) super(node: node, document: document, enumerator_class: ExampleElementEnumerator) end |
Class Method Details
.short_type ⇒ Symbol
Returns the short type
22 23 24 |
# File 'lib/kitchen/example_element.rb', line 22 def self.short_type :example end |
Instance Method Details
#titles_to_rename ⇒ ElementEnumerator
Returns the an enumerator for titles.
30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/kitchen/example_element.rb', line 30 def titles_to_rename titles(except: \ lambda do |title| title.parent.has_class?('os-caption-container') || \ title.parent.has_class?('os-caption') || \ title.parent.name == 'caption' || \ title.parent.data_type == 'note' || \ title.parent.data_type == 'exercise' end ) end |