comparison 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
comparison
equal deleted inserted replaced
2006:c3b03d099e04 2007:d3a0f2b8af28
990 ([Tr] ++ other) ([Body] ++ other) [] [] 990 ([Tr] ++ other) ([Body] ++ other) [] []
991 val td : other ::: {Unit} -> [other ~ [Body, Tr]] => unit 991 val td : other ::: {Unit} -> [other ~ [Body, Tr]] => unit
992 -> tag ([Colspan = int, Rowspan = int] ++ tableAttrs) 992 -> tag ([Colspan = int, Rowspan = int] ++ tableAttrs)
993 ([Tr] ++ other) ([Body] ++ other) [] [] 993 ([Tr] ++ other) ([Body] ++ other) [] []
994 994
995 val thead : other ::: {Unit} -> [other ~ [Table]] => unit
996 -> tag tableAttrs
997 ([Table] ++ other) ([Table] ++ other) [] []
998 val tbody : other ::: {Unit} -> [other ~ [Table]] => unit
999 -> tag tableAttrs
1000 ([Table] ++ other) ([Table] ++ other) [] []
1001 val tfoot : other ::: {Unit} -> [other ~ [Table]] => unit
1002 -> tag tableAttrs
1003 ([Table] ++ other) ([Table] ++ other) [] []
1004
995 (** Definition lists *) 1005 (** Definition lists *)
996 1006
997 val dl : other ::: {Unit} -> [other ~ [Body,Dl]] 1007 val dl : other ::: {Unit} -> [other ~ [Body,Dl]]
998 => unit 1008 => unit
999 -> tag [] ([Body] ++ other) ([Dl] ++ other) [] [] 1009 -> tag [] ([Body] ++ other) ([Dl] ++ other) [] []