summaryrefslogtreecommitdiff
path: root/src/urweb.grm
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2015-06-08 11:11:46 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2015-06-08 11:11:46 -0400
commit41c0092aeab51dc6ac9c0f6659b46b0d554be04c (patch)
tree53aabf9a2b0015c2c7f8ef2e7573b131341c0e1e /src/urweb.grm
parentc87bb7427ff06f241ec33c970d9f2e2762c0cbe4 (diff)
Apply syntax sugar for 'class' attribute to <form> as well
Diffstat (limited to 'src/urweb.grm')
-rw-r--r--src/urweb.grm1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/urweb.grm b/src/urweb.grm
index 7fc34793..50dacf21 100644
--- a/src/urweb.grm
+++ b/src/urweb.grm
@@ -1624,6 +1624,7 @@ xmlOne : NOTAGS (EApp ((EVar (["Basis"], "cdata", Infer)
val e = (EVar (["Basis"], "form", Infer), pos)
val e = (EApp (e, case #2 tag of
NONE => (EVar (["Basis"], "None", Infer), pos)
+ | SOME (EPrim (Prim.String (_, s)), _) => (EApp ((EVar (["Basis"], "Some", Infer), pos), parseClass s pos), pos)
| SOME c => (EApp ((EVar (["Basis"], "Some", Infer), pos), c), pos)), pos)
in
case #3 tag of