Class: MarkdownFormatter::ASTNode::Strong

Inherits:
Base
  • Object
show all
Defined in:
lib/markdown_formatter/nodes/strong.rb

Instance Attribute Summary

Attributes inherited from Base

#node

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from MarkdownFormatter::ASTNode::Base

Instance Method Details

#to_sObject



4
5
6
7
# File 'lib/markdown_formatter/nodes/strong.rb', line 4

def to_s
  delim = node.dig(:options, :delim)
  "%s%s%s" % [delim, Paragraph.new(node).to_s, delim]
end