Questions tagged [jssoup]

3 questions
1
vote
1 answer

Does JSSoup support extracting text?

Does JSSoup support extracting text similar to Beautiful Soup soup.findAll(text=True)? The documentation does not provide any information about this use case, but seems to me that there should be a way. To clarify what I want is to grab all visible…
Miki
  • 1,625
  • 21
  • 29
1
vote
3 answers

Does JSSoup support select() similar to Beautiful Soup or JSoup?

Does JSSoup (which itself states "JavaScript + BeautifulSoup = JSSoup") support a select() operation similar to Beautiful Soup or JSoup to select elements based on a CSS selector? I did not find it, does it probably exist with a different name?
Markus Weninger
  • 11,931
  • 7
  • 64
  • 137
0
votes
1 answer

JSSoup - SyntaxError: Unexpected token '<' Apps Script

In my Apps Script add-on, I need to use an external library JSSoup for managing some HTML text. I followed this answer to figure out how to add/import an external library in Apps Script. Then I added…