OCaml HTML5 parser/serialiser based on Python's JustHTML
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at f7c69be4eae5476a0985d55de71f2cc34c8d5361 42 lines 1.4 kB view raw
1(** HTML5 table element specifications. 2 3 Table elements represent data with more than one dimension. 4 See https://html.spec.whatwg.org/multipage/tables.html *) 5 6val table : Element_spec.t 7(** The table element represents data with more than one dimension in the form 8 of a table. *) 9 10val caption : Element_spec.t 11(** The caption element represents the title of the table. *) 12 13val colgroup : Element_spec.t 14(** The colgroup element represents a group of one or more columns in the table. *) 15 16val col : Element_spec.t 17(** The col element represents one or more columns in the table. It is a void 18 element. *) 19 20val tbody : Element_spec.t 21(** The tbody element represents a block of rows that consist of a body of data 22 for the table. *) 23 24val thead : Element_spec.t 25(** The thead element represents the block of rows that consist of the column 26 labels (headers) for the table. *) 27 28val tfoot : Element_spec.t 29(** The tfoot element represents the block of rows that consist of the column 30 summaries (footers) for the table. *) 31 32val tr : Element_spec.t 33(** The tr element represents a row of cells in a table. *) 34 35val td : Element_spec.t 36(** The td element represents a data cell in a table. *) 37 38val th : Element_spec.t 39(** The th element represents a header cell in a table. *) 40 41val all : Element_spec.t list 42(** List of all table element specifications. *)