drop empty attributes in `html->xexpr`

pull/108/merge
Matthew Butterick 8 years ago
parent 551b0ae046
commit 97b6dbb977

@ -29,7 +29,7 @@
[(struct pcdata (start stop string)) string]
[(struct entity (start stop entity)) entity]
[(struct attribute (start stop key value)) (list key value)]
[(struct element (start stop name attributes content)) `(,name ,(map loop attributes) ,@(map loop content))]
[(struct element (start stop name attributes content)) `(,name ,@(if (empty? attributes) empty (list (map loop attributes))) ,@(map loop content))]
[(list elements ...) (map loop elements)]
[else (format "unknown item: ~a" elem)])))

Loading…
Cancel
Save