Mercurial > urweb
diff lib/ur/basis.urs @ 2007:d3a0f2b8af28
<thead>, <tbody>, <tfoot>
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Wed, 30 Apr 2014 13:05:54 -0400 |
parents | a1d3fbdcc897 |
children | 93ff76058825 |
line wrap: on
line diff
--- a/lib/ur/basis.urs Tue Apr 29 16:47:45 2014 -0400 +++ b/lib/ur/basis.urs Wed Apr 30 13:05:54 2014 -0400 @@ -992,6 +992,16 @@ -> 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]]