35 lines
869 B
YAML
35 lines
869 B
YAML
name: mormongirlz
|
|
sceneByURL:
|
|
- action: scrapeXPath
|
|
url:
|
|
- mormongirlz.com
|
|
scraper: sceneScraper
|
|
xPathScrapers:
|
|
sceneScraper:
|
|
scene:
|
|
Title: //div[@class="h-contant"]/h2/text()
|
|
Date:
|
|
selector: //meta[@property="article:published_time"]/@content
|
|
postProcess:
|
|
- replace:
|
|
- regex: (.+)(T.+)
|
|
with: $1
|
|
Details:
|
|
selector: //div[@class="h-contant"]/div/text()
|
|
concat: "\n\n"
|
|
Studio:
|
|
Name:
|
|
selector: //meta[@property="og:site_name"]/@content
|
|
postProcess:
|
|
- replace:
|
|
- regex: " "
|
|
with: ""
|
|
Image:
|
|
selector: //img[@class="intro"]/@src
|
|
postProcess:
|
|
- replace:
|
|
- regex: \/\/\/\/
|
|
with: //
|
|
|
|
# Last Updated September 11, 2020
|