Class: Html2Text

Inherits:
Object
  • Object
show all
Defined in:
lib/html2text.rb,
lib/html2text/version.rb

Constant Summary collapse

VERSION =
"0.2.1"

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(doc) ⇒ Html2Text

Returns a new instance of Html2Text.



6
7
8
# File 'lib/html2text.rb', line 6

def initialize(doc)
  @doc = doc
end

Instance Attribute Details

#docObject (readonly)

Returns the value of attribute doc.



4
5
6
# File 'lib/html2text.rb', line 4

def doc
  @doc
end

Class Method Details

.convert(html) ⇒ Object



10
11
12
13
14
15
16
# File 'lib/html2text.rb', line 10

def self.convert(html)
  html = html.to_s
  html = fix_newlines(replace_entities(html))
  doc = Nokogiri::HTML(html)

  Html2Text.new(doc).convert
end

.fix_newlines(text) ⇒ Object



18
19
20
# File 'lib/html2text.rb', line 18

def self.fix_newlines(text)
  text.gsub("\r\n", "\n").gsub("\r", "\n")
end

.replace_entities(text) ⇒ Object



22
23
24
# File 'lib/html2text.rb', line 22

def self.replace_entities(text)
  text.gsub(" ", " ").gsub("\u00a0", " ")
end

Instance Method Details

#convertObject



26
27
28
29
30
31
# File 'lib/html2text.rb', line 26

def convert
  output = iterate_over(doc)
  output = remove_leading_and_trailing_whitespace(output)
  output = remove_unnecessary_empty_lines(output)
  output.strip
end

#image_text(node) ⇒ Object



169
170
171
172
173
174
175
176
177
# File 'lib/html2text.rb', line 169

def image_text(node)
  if node.attribute("title")
    "[" + node.attribute("title").to_s + "]"
  elsif node.attribute("alt")
    "[" + node.attribute("alt").to_s + "]"
  else
    ""
  end
end

#iterate_over(node) ⇒ Object



58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/html2text.rb', line 58

def iterate_over(node)
  return trimmed_whitespace(node.text) if node.text?

  if ["style", "head", "title", "meta", "script"].include?(node.name.downcase)
    return ""
  end

  output = []

  output << prefix_whitespace(node)
  output += node.children.map do |child|
    iterate_over(child)
  end
  output << suffix_whitespace(node)

  output = output.compact.join("") || ""

  if node.name.downcase == "a"
    output = wrap_link(node, output)
  end
  if node.name.downcase == "img"
    output = image_text(node)
  end

  output
end

#next_node_name(node) ⇒ Object



46
47
48
49
50
51
52
53
54
55
56
# File 'lib/html2text.rb', line 46

def next_node_name(node)
  next_node = node.next_sibling
  while next_node != nil
    break if next_node.element?
    next_node = next_node.next_sibling
  end

  if next_node && next_node.element?
    next_node.name.downcase
  end
end

#prefix_whitespace(node) ⇒ Object



85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/html2text.rb', line 85

def prefix_whitespace(node)
  case node.name.downcase
    when "hr"
      "---------------------------------------------------------------\n"

    when "h1", "h2", "h3", "h4", "h5", "h6", "ol", "ul"
      "\n"

    when "tr", "p", "div"
      "\n"

    when "td", "th"
      "\t"

    when "li"
      "- "
  end
end

#remove_leading_and_trailing_whitespace(text) ⇒ Object



33
34
35
# File 'lib/html2text.rb', line 33

def remove_leading_and_trailing_whitespace(text)
  text.gsub(/[ \t]*\n[ \t]*/im, "\n").gsub(/ *\t */im, "\t")
end

#remove_unnecessary_empty_lines(text) ⇒ Object



37
38
39
# File 'lib/html2text.rb', line 37

def remove_unnecessary_empty_lines(text)
  text.gsub(/\n\n\n*/im, "\n\n")
end

#suffix_whitespace(node) ⇒ Object



104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# File 'lib/html2text.rb', line 104

def suffix_whitespace(node)
  case node.name.downcase
    when "h1", "h2", "h3", "h4", "h5", "h6"
      # add another line
      "\n"

    when "p", "br"
      "\n" if next_node_name(node) != "div"

    when "li"
      "\n"

    when "div"
      # add one line only if the next child isn't a div
      "\n" if next_node_name(node) != "div" && next_node_name(node) != nil
  end
end

#trimmed_whitespace(text) ⇒ Object



41
42
43
44
# File 'lib/html2text.rb', line 41

def trimmed_whitespace(text)
  # Replace whitespace characters with a space (equivalent to \s)
  text.gsub(/[\t\n\f\r ]+/im, " ")
end

links are returned in [text](link) format



123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# File 'lib/html2text.rb', line 123

def wrap_link(node, output)
  href = node.attribute("href")
  name = node.attribute("name")

  output = output.strip

  # remove double [[ ]]s from linking images
  if output[0] == "[" && output[-1] == "]"
    output = output[1, output.length - 2]

    # for linking images, the title of the <a> overrides the title of the <img>
    if node.attribute("title")
      output = node.attribute("title").to_s
    end
  end

  # if there is no link text, but a title attr
  if output.empty? && node.attribute("title")
    output = node.attribute("title").to_s
  end

  if href.nil?
    if !name.nil?
      output = "[#{output}]"
    end
  else
    href = href.to_s

    if href != output && href != "mailto:#{output}" &&
        href != "http://#{output}" && href != "https://#{output}"
      if output.empty?
        output = href
      else
        output = "[#{output}](#{href})"
      end
    end
  end

  case next_node_name(node)
    when "h1", "h2", "h3", "h4", "h5", "h6"
      output += "\n"
  end

  output
end