Class: DocTemplate::Tags::HeadingTag
- Defined in:
- lib/doc_template/tags/heading_tag.rb
Constant Summary collapse
- TEMPLATE =
'heading.html.erb'
Constants inherited from BaseTag
BaseTag::SOFT_RETURN_RE, BaseTag::UNICODE_SPACES_RE
Instance Attribute Summary
Attributes inherited from BaseTag
Instance Method Summary collapse
Methods inherited from BaseTag
#before_tag, #check_tag_soft_return, #content_until_break, #content_until_materials, #ela2?, #ela6?, #gdoc?, #include_break?, #include_break_for?, #materials, parse, #parse_nested, #parse_template, #placeholder, #placeholder_id, #render, #replace_tag, #tag_data, tag_with_html_regexp, #template_name, #template_path, template_path_for
Instance Method Details
#parse(node, opts = {}) ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/doc_template/tags/heading_tag.rb', line 8 def parse(node, opts = {}) # we have to collect all the next siblings until next stop-tag params = { content: parse_nested(content_until_break(node), opts), heading: "<h3>#{heading(opts[:value])}</h3>", tag: self.class::TAG_NAME } @content = parse_template params, TEMPLATE replace_tag node self end |