Hi Jean-Christophe,

I'm not good in CSS, so lets assume your proposal is correct, then

> ("%"  # Table
>    (let Nm (till "}" T)
>       (prin "<table class=\"wiki\">")
>       (ht:Prin Nm)
>       (prin "</table>" ) ) )

this will not work, as (let Nm (till "}" T) ... terminates on the *next*
"}", but the table elements are nested.


Can you try this:

   ("%"  # Table
      (prin "<table class=\"wiki\">")
      (recurse T)
      (prin "</table>") )


A legal table would be e.g.

   %{
      ~{ |{a1} |{a1} |{a1} }
      ~{ |{b1} |{b1} |{b1} }
   }


> Sorry for the hassle.

No problem! :)
☺/ A!ex

-- 
UNSUBSCRIBE: mailto:[email protected]?subject=Unsubscribe

Reply via email to