How to reject specify HTML tags by using css or xpath selector

246 Views Asked by At

I want to remove style and script tags and the contents of them by using css or xpath selector.

This is a example HTML:

<html>
  <head>
    <title>test</title>
    <style>
      // style
    </style>
    <script>
      /* some script */
    </script>
  </head>
  <body>
    <p>text</p>
    <script>
      /* some script */
    </script>
    <div>foo</div>
  </body>
</html>

I want to get a HTML like this:

<html>
  <head>
    <title>test</title>
  </head>
  <body>
    <p>text</p>
    <div>foo</div>
  </body>
</html>

I thought I can get HTML that doesn't including <script> tags with this code, but somehow the code only duplicate the HTML.

doc = Nokogiri::HTML(open("foo.text"))
doc.css(":not(script)").to_html

How can I enable the behavior I want?

2

There are 2 best solutions below

0
On BEST ANSWER

Simpler is just:

doc.search('style,script').remove
1
On

Try these lines:

doc.search('.//style').remove
doc.search('.//script').remove