Class: ReverseMarkdown::Converters::A

Inherits:
Base
  • Object
show all
Defined in:
lib/reverse_markdown/converters/a.rb

Instance Method Summary collapse

Methods inherited from Base

#escape_keychars, #extract_title, #treat, #treat_children

Instance Method Details

#convert(node, state = {}) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
# File 'lib/reverse_markdown/converters/a.rb', line 4

def convert(node, state = {})
  name  = treat_children(node, state)
  href  = node['href']
  title = extract_title(node)

  if href.to_s.empty? || name.empty?
    name
  else
    link = "[#{name}](#{href}#{title})"
    link.prepend(' ') if prepend_space?(node)
    link
  end
end