Tyxml_syntax.Element_contentElement child argument assemblers. These are almost parsers, except they only tell how to pass already-parsed children to element functions.
type assembler =
lang:Common.lang ->
loc:Ppxlib.Location.t ->
name:string ->
Ppxlib.expression Common.value list ->
(Ppxlib.arg_label * Ppxlib.expression) listAssemblers satisfy: assembler ~lang ~loc ~name children evaluates to a list of optionally-labeled parse trees for passing children to the the element function for element name. For example, for a table element
<table>
<thead>
<tr><th>A</th><th>B</th></tr>
</thead>
<tbody>
</tbody>
</table>The assembler table, when called with the parsed children, will evaluate to parse trees representing
~thead:(* the thead element *) [(* the tbody element *)]This satisfies the child arguments in the signature of Html_sigs.T.tablex. The ~table label is represented by the string "table", and the unlabeled list argument is paired with the empty string.
The argument implementation is the name of the module providing the run-time implementation of the element function that will be applied to the children. It is either Html or Svg, and is based on the element's namespace. It is used for wrapping child elements, and for scoping child txt elements.
The name argument is used for error reporting.
val nullary : assemblerval unary : assemblerval star : assemblerval html : assemblerval head : assemblerval figure : assemblerval object_ : assemblerval audio_video : assemblerval table : assemblerval fieldset : assemblerval datalist : assemblerval details : assemblerval picture : assemblerval script : assemblerval filter_surrounding_whitespace :
Ppxlib.expression Common.value list ->
Ppxlib.expression Common.value listRemove txt node containing only whitespace that are at the beginning or the end of the list.