[Peter Wright wrote:]
I'm guessing SXML->HTML has a special-case handling for the standard "inline"-display HTML tags
Yep. As I mentioned, I added inline tag handling to sxml-transforms, to avoid rendering issues. It treats the following tags as "inline": (define xhtml-inline-elements '(a abbr acronym cite code dfn em font kbd q samp strong var b big i small strike sub sup tt u blink span)) Other tags are considered "block" and get a newline. Another feature is that certain empty tags use the minimized close tag form, for xhtml compatibility: (define xhtml-empty-elements '(base meta link hr br param img area input col)) _______________________________________________ Chicken-users mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/chicken-users
