(let (name props children ret)
(cond
((stringp format-unit)
- (www-format-encode-string format-unit 'without-tags)
- ;; (mapconcat (lambda (c)
- ;; (cond
- ;; ((eq c ?<) "&lt;")
- ;; ((eq c ?>) "&gt;")
- ;; (t
- ;; (char-to-string c))))
- ;; format-unit "")
+ (mapconcat (lambda (c)
+ (cond
+ ((eq c ?&) "&")
+ ;; ((eq c ?<) "&lt;")
+ ;; ((eq c ?>) "&gt;")
+ (t
+ (char-to-string c))))
+ (www-format-encode-string format-unit 'without-tags)
+ "")
)
((consp format-unit)
(setq name (car format-unit)