diff options
| author | Asko Nõmm <asko@nmm.ee> | 2025-10-19 23:17:34 +0300 |
|---|---|---|
| committer | Asko Nõmm <asko@nmm.ee> | 2025-10-19 23:17:34 +0300 |
| commit | 79159a47202cda8bdfa74e3e594f69ab1f6c9e2a (patch) | |
| tree | 29ab638914f1493f122f41d2c14da7b4b7286745 /src/dompa/nodes.cljc | |
| parent | 23542524c4b545c2489ec1a429f810cbfcd003cd (diff) | |
#5: Fixen an issue where same-name children of a root would cause the nodes to close too early.
Diffstat (limited to 'src/dompa/nodes.cljc')
| -rw-r--r-- | src/dompa/nodes.cljc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dompa/nodes.cljc b/src/dompa/nodes.cljc index 8600026..9dbecd0 100644 --- a/src/dompa/nodes.cljc +++ b/src/dompa/nodes.cljc @@ -1,7 +1,7 @@ (ns dompa.nodes) (def ^:private default-void-nodes - #{:!doctype :area :base :br :col :embed :hr :img :input + #{:!doctype :!DOCTYPE :area :base :br :col :embed :hr :img :input :link :meta :source :track :wbr}) (defn- node-attrs-reducer [attrs k v] |
