kindleclippings 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/kindleclippings.rb +2 -5
- metadata +2 -2
data/lib/kindleclippings.rb
CHANGED
@@ -57,11 +57,8 @@ module KindleClippings
|
|
57
57
|
type, location, date = *second_line
|
58
58
|
content = String.new
|
59
59
|
|
60
|
-
|
61
|
-
|
62
|
-
else
|
63
|
-
content = lines[3]
|
64
|
-
end
|
60
|
+
content = lines[3..-1].join("")
|
61
|
+
|
65
62
|
Clipping.new(title, author, type.to_sym, location, date, content.strip)
|
66
63
|
end
|
67
64
|
end
|