algolia_html_extractor 2.3.0 → 2.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +0 -4
- data/lib/algolia_html_extractor.rb +0 -1
- data/lib/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9dcc5416e75d46b8b0b18e78f920b7b588cdb853
|
4
|
+
data.tar.gz: 19ea9540c519f30a9e04caa71d4216531dc97295
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fff97d2b4fdbc2c7588f3df01f21f8f98b4e2a719348f93ddde54e53b6474d78627d6227ac242928506439a62b8533ea9dbb8145f9c88e02d835e5d9dab43a7
|
7
|
+
data.tar.gz: 956d98cb1a1f06139d53bc29a8c10ce40b9c4287fc0d3285238f3f74e8b1b8602110874ce61685f5a543e3556246a6dbbb6e00ecb205fa2687a08def76e9c4a1
|
data/README.md
CHANGED
@@ -75,7 +75,6 @@ Here is one of the records extracted:
|
|
75
75
|
```ruby
|
76
76
|
{
|
77
77
|
:objectID => "1f5923d5a60e998704f201bbe9964811",
|
78
|
-
:tag_name => "p",
|
79
78
|
:html => "<p>The hero quits his job, hits the road, or whatever cuts him from his previous life.</p>",
|
80
79
|
:text => "The hero quits his job, hits the road, or whatever cuts him from his previous life.",
|
81
80
|
:node => #<Nokogiri::XML::Element:0x11a5850 name="p">,
|
@@ -99,9 +98,6 @@ Here is one of the records extracted:
|
|
99
98
|
Each record has a `objectID` that uniquely identify it (computed by a hash of all
|
100
99
|
the other values).
|
101
100
|
|
102
|
-
It also contains the HTML tag name in `tag_name` (by default `<p>`
|
103
|
-
paragraphs are extracted, but see the [settings][7] on how to change it).
|
104
|
-
|
105
101
|
`html` contains the whole `outerContent` of the element, including the wrapping
|
106
102
|
tags and inner children. The `text` attribute contains the textual content,
|
107
103
|
stripping out all HTML.
|
data/lib/version.rb
CHANGED