[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: don't postprocess search URL results
- From: Naohiro Aota <naota@xxxxxxxxx>
- Date: Wed, 15 Jul 2009 22:17:40 +0900
- X-ml-name: emacs-w3m
- X-mail-count: 10953
- References: <87fxd9d88q.fsf@xxxxxxxxxxx>
jidanni@xxxxxxxxxxx writes:
> Please don't process search results differently!
> I discovered that the subtle difference between
> Location: http://www.google.com.tw/sarch?p=x
> Location: http://www.google.com.tw/search?p=x
> causes many more (7 vs. 2) <hr>s to be inserted in the rendering.
> Indeed, I didn't even use S, I just used g and adjusted the URL.
> apparently all the URL has to match is google.com.*/search and extra
> <hr>s get added. Apparently emacs-w3m is replacing <div> and </div> with
> <hr> and <hr> upon rendering.
HTML is processed by w3m-filter according to
w3m-filter-rules. w3m-filter is disabled by default, and enabled when
w3m-use-filter is `t'.
Anyway for this problem, you may resolve it like this.
(setq w3m-filter-google-use-ruled-line nil)
Regards,