Guest User

Untitled

a guest
May 24th, 2020
5
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. # Check that a page is actually an article
  2. ?path: /posts/.+
  3.  
  4. # Required info
  5. body: //article
  6. title: /head/meta[@property="og:title"]
  7.  
  8. # Other info
  9. @datetime(0): //span[@class="date"]
  10. published_date: $@
  11. description: $body//p[1]
  12. cover: $body//img[1]
  13. image_url: $body//img[1]
  14.  
  15. # Cleanup
  16. @remove: $body//h1[1]
  17. @remove: $body//div[@class="meta"]
  18. @remove: $body//hr
  19. @remove: $body//h4
  20. @remove: $body//div[@class="footer"]
Advertisement
Add Comment
Please, Sign In to add comment