aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/ur/basis.urs
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2014-04-30 13:05:54 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2014-04-30 13:05:54 -0400
commit48f4fa7d2482829d6195e91e1cd4c5a940aacab4 (patch)
tree159ee8bab67c30caf6c7ccd03fdd72a45d81eeb2 /lib/ur/basis.urs
parent57034827380cc25f19e1ea81af4087f9a2d7a406 (diff)
<thead>, <tbody>, <tfoot>
Diffstat (limited to 'lib/ur/basis.urs')
-rw-r--r--lib/ur/basis.urs10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/ur/basis.urs b/lib/ur/basis.urs
index 7fdac1f6..2525d676 100644
--- a/lib/ur/basis.urs
+++ b/lib/ur/basis.urs
@@ -992,6 +992,16 @@ val td : other ::: {Unit} -> [other ~ [Body, Tr]] => unit
-> tag ([Colspan = int, Rowspan = int] ++ tableAttrs)
([Tr] ++ other) ([Body] ++ other) [] []
+val thead : other ::: {Unit} -> [other ~ [Table]] => unit
+ -> tag tableAttrs
+ ([Table] ++ other) ([Table] ++ other) [] []
+val tbody : other ::: {Unit} -> [other ~ [Table]] => unit
+ -> tag tableAttrs
+ ([Table] ++ other) ([Table] ++ other) [] []
+val tfoot : other ::: {Unit} -> [other ~ [Table]] => unit
+ -> tag tableAttrs
+ ([Table] ++ other) ([Table] ++ other) [] []
+
(** Definition lists *)
val dl : other ::: {Unit} -> [other ~ [Body,Dl]]