to be more exact: this
<pre>
1 2
</pre>
yields 2 tokens
'1 ' ('1' + ' '*8)
'2'
render() never sees the <pre> tag and renderrunes()
eats the trailing spaces yielding
1 2
i'm not sure if this is the spec or not, but it's not what
one expects, based on most browsers.
erik
erik quanstrom <[EMAIL PROTECTED]> writes
|
| as long as we're on the subject of html, it seems like
| <pre> tags are not properly rendered by libhtml --
| all the information gets to render() except the <pre>
| formatting flag.
|
| i'm working on fixing it, but was wondering if somebody
| else has beat me to it.
|
| erik