Replace HTML tags in title/description (#1924)

This commit is contained in:
DogmaDragon 2024-06-29 11:26:13 +03:00 committed by GitHub
parent 418c2ef650
commit b6fe12f319
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -120,6 +120,12 @@ jsonScrapers:
- replace:
- regex: """
with: "\""
- replace:
- regex: "<"
with: "<"
- replace:
- regex: "&gt;"
with: ">"
Details:
selector: data.description
postProcess:
@ -129,6 +135,12 @@ jsonScrapers:
- replace:
- regex: "&quot;"
with: "\""
- replace:
- regex: "&lt;"
with: "<"
- replace:
- regex: "&gt;"
with: ">"
Code: data.id
URL:
selector: data.url
@ -152,4 +164,4 @@ jsonScrapers:
- regex: ^
with: https://www.manyvids.com
Studio: *performer
# Last Updated June 07, 2024
# Last Updated June 29, 2024