Class: Storyblok::Richtext::Marks::Link
- Inherits:
-
Mark
- Object
- Mark
- Storyblok::Richtext::Marks::Link
show all
- Defined in:
- lib/storyblok/richtext/html_renderer/marks/link.rb
Instance Attribute Summary
Attributes inherited from Mark
#type
Instance Method Summary
collapse
Methods inherited from Mark
#initialize
Instance Method Details
#matching ⇒ Object
5
6
7
|
# File 'lib/storyblok/richtext/html_renderer/marks/link.rb', line 5
def matching
@node['type'] === 'link'
end
|
#tag ⇒ Object
9
10
11
12
13
14
|
# File 'lib/storyblok/richtext/html_renderer/marks/link.rb', line 9
def tag
[{
tag: "a",
attrs: @node['attrs'].slice('href', 'target')
}]
end
|