html-get 2.17.0-3 → 2.17.0-5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/html.js +5 -2
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "html-get",
3
3
  "description": "Get the HTML from any website, fine-tuned for correction & speed",
4
4
  "homepage": "https://nicedoc.com/microlinkhq/html-get",
5
- "version": "2.17.0-3",
5
+ "version": "2.17.0-5",
6
6
  "main": "src/index.js",
7
7
  "bin": {
8
8
  "html-get": "bin/index.js"
package/src/html.js CHANGED
@@ -90,6 +90,9 @@ const addBody = ({ url, headers, html }) => {
90
90
  return `<!DOCTYPE html><html><head></head><body>${element}</body></html>`
91
91
  }
92
92
 
93
+ const isOpenGraph = (prop = '') =>
94
+ ['og:', 'fb:'].some(prefix => prop.startsWith(prefix))
95
+
93
96
  const rewriteMetaTags = ({ $ }) => {
94
97
  $('meta').each((_, element) => {
95
98
  const el = $(element)
@@ -99,11 +102,11 @@ const rewriteMetaTags = ({ $ }) => {
99
102
  const property = el.attr('property')
100
103
 
101
104
  // Convert 'name' to 'property' for Open Graph tags if 'property' is not already set correctly
102
- if (name?.startsWith('og:') && property !== name) {
105
+ if (property !== name && isOpenGraph(name)) {
103
106
  el.removeAttr('name').attr('property', name)
104
107
  debug('og', el.attr())
105
108
  // Convert 'property' to 'name' for non-Open Graph tags
106
- } else if (property && !property.startsWith('og')) {
109
+ } else if (property && !isOpenGraph(property)) {
107
110
  el.removeAttr('property').attr('name', property)
108
111
  debug('meta', el.attr())
109
112
  }