Hi bug-apl,
Is there any reason HTML∆attr does not like single characters? I would assume
that
'left' HTML∆attr 'a '
would return
left="a"
Instead it prints:
<pre>************************************************
*** Assertion (sert 1 ≡ ≡xB) failed at HTML∆attr[2]
</pre>
≡ xB: 0┏━┓
⍴⍴ xB: 0┃a┃
⍴ xB: ┗━┛
</pre>
<pre>
Stack:
◊[0]
HTML∆attr[2]
************************************************</pre>
adding one extra space seems acceptable:
'left' HTML∆attr 'a '
left="a "
(SVN revision 630)
-Alex Weiner