[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: tables need borders
- From: Katsumi Yamaoka <yamaoka@xxxxxxx>
- Date: Thu, 19 Apr 2012 19:00:33 +0900
- X-ml-name: emacs-w3m
- X-mail-count: 11818
- References: <87pqb4oyug.fsf@xxxxxxxxxxx>
In [emacs-w3m : No.11815] jidanni@xxxxxxxxxxx wrote:
> 1. http://docs.basex.org/wiki/Serialization has a table that needs a
> border to be readable.
> 2. in http://jidanni.org/comp/configuration/.emacs-w3m I had a function
> that used to do the job.
> 3. However adding the google function at the end of the file ruined it.
Oops, sorry. I never imagined you are a w3m-filter user.
Please replace this line at the bottom of your .emacs-w3m file
(setq w3m-filter-rules
'(("\\`https?://[a-z]+\\.google\\." w3m-filter-google)))
with:
(setcar (rassoc '(w3m-filter-google) w3m-filter-rules)
"\\`https?://[a-z]+\\.google\\.")
Otherwise simply do the following (it will make it a bit faster):
1. Remove this line in the middle of of your .emacs-w3m file:
(eval-after-load "w3m-filter"
'(nconc w3m-filter-rules '((".*" w3m-filter-no-render-table))))
2. Replace this line at the bottom of your .emacs-w3m file
(setq w3m-filter-rules
'(("\\`https?://[a-z]+\\.google\\." w3m-filter-google)))
with:
(setq w3m-filter-rules
'(("\\`https?://[a-z]+\\.google\\." w3m-filter-google)
(".*" w3m-filter-no-render-table)))