Class: MarkdownFormatter::ASTNode::Inline

Inherits:
Base
  • Object
show all
Defined in:
lib/markdown_formatter/nodes/inline.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
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/markdown_formatter/nodes/inline.rb', line 4

def to_s
  case node[:type]
    when :a
      Link.new(c).to_s
    when :text
      node[:value]
    when :br
      # skip
    when :smart_quote
      SmartQuote.new(c).to_s
    when :typographic_sym
      TypographicSym.new(c).to_s
    when :img
      Image.new(c).to_s
    when :entity
      Entity.new(c).to_s
    when :footnote
      Footnote.new(c).to_s
    else
      pp c
      raise "Unexpected type `#{c[:type]}'"
  end
end