This is the mail archive of the kawa@sourceware.org mailing list for the Kawa project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: xml literals


hello,

i just want to genrate something like this:

<TD align=center>

but seems not available in kawa, see the errors:
./kawa --output-format html
#|kawa:2|# #<td align=center>toto</td>
/dev/stdin:2:13: missing attribute value
/dev/stdin:2:14: missing space before attribute
/dev/stdin:2:19: missing '=' after attribute
/dev/stdin:2:20: missing attribute value
/dev/stdin:2:21: missing space before attribute
/dev/stdin:2:24: missing '=' after attribute
/dev/stdin:2:25: missing attribute value
/dev/stdin:2:26: missing space before attribute
/dev/stdin:2:28: missing '=' after attribute
/dev/stdin:3:1: missing attribute value
/dev/stdin:3:1: missing '>' after start element

i also try first variants like this:

#|kawa:3|# (html:td "toto")
<td>toto</td>

i can find a place to put the options of an html TAG
is there a way to do it? or not yet implemented?
i have tested this with kawa-2.4 and kawa-2.1

regards,
damien


Le Monday 15 May 2017 20:51:11 Per Bothner, vous avez écrit :
> I checked in a fix, in both the master and kawa-2.4 branches.
> 
> The bug only happened when the value of (html:td result) is not used.
> You might say: But it is used in:
> 			(set! html-literal-table-data-code
> 			      (html:td result))
> 
> No, because html-literal-table-data-code is not used, so the assignment
> is ignored (except for possible side-effects).



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]