| I asked about this in IRC, but nobody quite seemed to know. I'm working on something in Arc right now, and having noticed that html.arc lacks support for <div> I set about implementing it myself. Here's my current code: (attribute div align opsym)
(attribute div class opstring)
(attribute div dir opsym)
(attribute div id opsym)
(attribute div lang opstring)
(attribute div onclick opstring)
(attribute div style opstring)
(attribute div title opstring)
(mac div (args . body)
`(tag (div ,args) ,@body))
Is anyone willing to give me a hand in figuring this out? =) |