[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Strange characters displayed in lists
>>>>> In [emacs-w3m : No.08742] Stefan Reichör wrote:
> Katsumi Yamaoka <yamaoka@xxxxxxx> writes:
>> Could you let me know the url(s) where you looked at such
>> characters?
> http://www.keplerproject.org/luafilesystem/
> The menu on the left side shows that characters (before Overview,
> Status, Download,...)
I see. That rectangle character is a representation of the
bullet, which corresponds to the <li> tag in the html source.
> It looks o.k. on other browsers.
I also verified it with Firefox and IE. Well, what does it is
w3m, not emacs-w3m. I don't know how I customize w3m, and so
much as whether it is customizable. Could anyone follow it up?
Here's a test case:
(let ((buffer (get-buffer-create "*testing*")))
(save-excursion
(set-buffer buffer)
(erase-buffer)
(insert
"<ul><ul>\n<li>foo</li>\n<li>bar</li>\n<li>baz</li>\n</ul></ul>\n")
(w3m-region (point-min) (point-max)))
(display-buffer buffer))