gawel / pyquery

A jquery-like library for python
http://pyquery.rtfd.org/
Other
2.3k stars 182 forks source link

make_links_absolute: link startswith whitespace #125

Closed fate0 closed 8 years ago

fate0 commented 8 years ago

using make_links_absolute to handle the link startswith whitespace, like this:

-- http://www.target.com/
<html>
  <a href="        /hello.php">test</a>
<html>

result: http://www.target.com/ /hello.php

what I expect : http://www.target.com/hello.php

just work like a browser