ruricolist/spinneret

Class keywords are not parsed properly

phoe opened this issue · 3 comments

phoe commented
SPINNERET> (with-html (:div.my-class))
<div class=my-class></div>
NIL

SPINNERET> (interpret-html-tree '(:div.my-class))
<div.my-class>
</div.my-class>
NIL
phoe commented

Related question: the docs stay that the interpreter implements a "subset" of spinneret syntax. Is this subset specified somewhere and/or aims for feature parity with the macro facility? Maybe adding that to the docs could clarify some questions I've seen related to "can the spinneret interpreter do X or Y or do I need to depend on its macro code?".

I've added a line to the readme about the interpreter still being under development.

phoe commented

Thanks!