Class: Storyblok::Richtext::Marks::Styled

Inherits:
Mark
  • Object
show all
Defined in:
lib/storyblok/richtext/html_renderer/marks/styled.rb

Instance Attribute Summary

Attributes inherited from Mark

#type

Instance Method Summary collapse

Methods inherited from Mark

#initialize

Constructor Details

This class inherits a constructor from Storyblok::Richtext::Marks::Mark

Instance Method Details

#matchingObject



5
6
7
# File 'lib/storyblok/richtext/html_renderer/marks/styled.rb', line 5

def matching
  @node['type'] === 'styled'
end

#tagObject



9
10
11
12
13
14
# File 'lib/storyblok/richtext/html_renderer/marks/styled.rb', line 9

def tag
  [{
    tag: "span",
    attrs: @node['attrs']
  }]
end