ある条件に基づいて要素のコンテンツを置き換える必要があります。条件が満たされない場合、要素はそのままにする必要があります。
(enlive/deftemplate template (io/resource "templ.html")
[]
[:#el_id] (if (condition)
(enlive/content ...)
;; otherwise identity transformation here
))
恒等変換として使用しようとしましnil
たが、要素を削除するだけです。