Module Html_f.MakeSource

Create a new implementation of HTML, using the given underlying Xml and Svg implementation. Will output a module of type Html_sigs.T with the various type equalities.

If your Xml implementation uses a special function wrapping, use Make_with_wrapped_functions.

Parameters

module Xml : Xml_sigs.T with type ('a, 'b) W.ft = 'a -> 'b
module Svg : Svg_sigs.T with module Xml := Xml

Signature

Sourcetype +'a elt = Xml.elt

HTML elements.

Element constructors are in section elements. Most elements constructors are either nullary, unary or star, depending on the number of children they accept. Children are usually given as a list of elements. txt is used for text.

div [a [txt "Foo"]] is equivalent to <div><a>foo</a></div>

The type variable 'a is used to track the element's type. This allows the OCaml typechecker to check HTML validity.

For example, div [] is of type [> `Div] elt. The span function only accepts children of type Html_types.span_content. Since `Div is not part of it. span [div []] will not typecheck.

Note that the concrete implementation of this type can vary. See Xml for details.

A complete HTML document.

Sourcetype +'a attrib = Xml.attrib

HTML attributes

Attribute constructors are in section attributes and their name starts with a_. Attributes are given to elements with the ~a optional argument.

a ~a:[a_href "ocsigen.org"] [txt "link!"] is equivalent to <a href="ocsigen.org">link!</a>

Similarly to elt, attributes use the OCaml type system to enforce HTML validity.

For example a_href returns a value of type [> `Href] attrib. The div function only accepts attributes of type Html_types.div_attrib. Since `Href is not part of it, div ~a:[a_href "ocsigen.org"] [] will not typecheck.

In some cases, attributes have to be disambiguated. The max attribute has two version, a_max and a_input_max, depending on the element. Such disambiguated attribute will contain the name of the associated element.

Sourcemodule Xml : Xml_sigs.T with type 'a W.t = 'a Xml.W.t with type 'a W.tlist = 'a Xml.W.tlist with type ('a, 'b) W.ft = ('a, 'b) Xml.W.ft with type uri = Xml.uri with type event_handler = Xml.event_handler with type mouse_event_handler = Xml.mouse_event_handler with type keyboard_event_handler = Xml.keyboard_event_handler with type touch_event_handler = Xml.touch_event_handler with type attrib = Xml.attrib with type elt = Xml.elt

Underlying XML data-structure

Sourcetype 'a wrap = 'a Xml.W.t

wrap is a container for elements and values.

In most cases, 'a wrap = 'a. For R modules (in eliom or js_of_ocaml), It will be React.S.t.

Sourcetype 'a list_wrap = 'a Xml.W.tlist

list_wrap is a container for list of elements.

In most cases, 'a list_wrap = 'a list. For R modules (in eliom or js_of_ocaml), It will be ReactiveData.RList.t.

Sourcetype ('a, 'b) nullary = ?a:'a attrib list -> unit -> 'b elt

A nullary element is an element that doesn't have any children.

Sourcetype ('a, 'b, 'c) unary = ?a:'a attrib list -> 'b elt wrap -> 'c elt

A unary element is an element that have exactly one children.

Sourcetype ('a, 'b, 'c) star = ?a:'a attrib list -> 'b elt list_wrap -> 'c elt

A star element is an element that has any number of children, including zero.

Various information about HTML, such as the doctype, ...

Uri

Sourcetype uri = Xml.uri
Sourceval string_of_uri : (uri, string) Xml.W.ft
Sourceval uri_of_string : (string, uri) Xml.W.ft

Attributes

Sourceval a_class : Html_types.nmtokens wrap -> [> `Class ] attrib

This attribute assigns a class name or set of class names to an element. Any number of elements may be assigned the same class name or names.

Sourceval a_user_data : Html_types.nmtoken -> Html_types.text wrap -> [> `User_data ] attrib

May be used to specify custom attributes. The example given by the W3C is as follows :

<ol>
  <li data-length="2m11s">Beyond The Sea</li>
</ol>

It should be used for preprocessing ends only.

Sourceval a_id : Html_types.text wrap -> [> `Id ] attrib

This attribute assigns a name to an element. This name must be unique in a document. The text should be without any space.

Sourceval a_title : Html_types.text wrap -> [> `Title ] attrib

This attribute offers advisory information about the element for which it is set.

Values of the title attribute may be rendered by user agents in a variety of ways. For instance, visual browsers frequently display the title as a tool tip (a short message that appears when the pointing device pauses over an object). Audio user agents may speak the title information in a similar context.

The title attribute has an additional role when used with the link element to designate an external style sheet. Please consult the section on links and style sheets for details.

I18N

Sourceval a_xml_lang : Html_types.languagecode wrap -> [> `XML_lang ] attrib
Sourceval a_lang : Html_types.languagecode wrap -> [> `Lang ] attrib

Events

Javascript events
Sourceval a_onabort : Xml.event_handler -> [> `OnAbort ] attrib
Sourceval a_onafterprint : Xml.event_handler -> [> `OnAfterPrint ] attrib
Sourceval a_onbeforeprint : Xml.event_handler -> [> `OnBeforePrint ] attrib
Sourceval a_onbeforeunload : Xml.event_handler -> [> `OnBeforeUnload ] attrib
Sourceval a_onblur : Xml.event_handler -> [> `OnBlur ] attrib
Sourceval a_oncanplay : Xml.event_handler -> [> `OnCanPlay ] attrib
Sourceval a_oncanplaythrough : Xml.event_handler -> [> `OnCanPlayThrough ] attrib
Sourceval a_onchange : Xml.event_handler -> [> `OnChange ] attrib
Sourceval a_onclose : Xml.event_handler -> [> `OnClose ] attrib
Sourceval a_ondurationchange : Xml.event_handler -> [> `OnDurationChange ] attrib
Sourceval a_onemptied : Xml.event_handler -> [> `OnEmptied ] attrib
Sourceval a_onended : Xml.event_handler -> [> `OnEnded ] attrib
Sourceval a_onerror : Xml.event_handler -> [> `OnError ] attrib
Sourceval a_onfocus : Xml.event_handler -> [> `OnFocus ] attrib
Sourceval a_onformchange : Xml.event_handler -> [> `OnFormChange ] attrib
Sourceval a_onforminput : Xml.event_handler -> [> `OnFormInput ] attrib
Sourceval a_onhashchange : Xml.event_handler -> [> `OnHashChange ] attrib
Sourceval a_oninput : Xml.event_handler -> [> `OnInput ] attrib
Sourceval a_oninvalid : Xml.event_handler -> [> `OnInvalid ] attrib
Sourceval a_onmousewheel : Xml.event_handler -> [> `OnMouseWheel ] attrib
Sourceval a_onoffline : Xml.event_handler -> [> `OnOffLine ] attrib
Sourceval a_ononline : Xml.event_handler -> [> `OnOnLine ] attrib
Sourceval a_onpause : Xml.event_handler -> [> `OnPause ] attrib
Sourceval a_onplay : Xml.event_handler -> [> `OnPlay ] attrib
Sourceval a_onplaying : Xml.event_handler -> [> `OnPlaying ] attrib
Sourceval a_onpagehide : Xml.event_handler -> [> `OnPageHide ] attrib
Sourceval a_onpageshow : Xml.event_handler -> [> `OnPageShow ] attrib
Sourceval a_onpopstate : Xml.event_handler -> [> `OnPopState ] attrib
Sourceval a_onprogress : Xml.event_handler -> [> `OnProgress ] attrib
Sourceval a_onratechange : Xml.event_handler -> [> `OnRateChange ] attrib
Sourceval a_onreadystatechange : Xml.event_handler -> [> `OnReadyStateChange ] attrib
Sourceval a_onredo : Xml.event_handler -> [> `OnRedo ] attrib
Sourceval a_onresize : Xml.event_handler -> [> `OnResize ] attrib
Sourceval a_onscroll : Xml.event_handler -> [> `OnScroll ] attrib
Sourceval a_onseeked : Xml.event_handler -> [> `OnSeeked ] attrib
Sourceval a_onseeking : Xml.event_handler -> [> `OnSeeking ] attrib
Sourceval a_onselect : Xml.event_handler -> [> `OnSelect ] attrib
Sourceval a_onshow : Xml.event_handler -> [> `OnShow ] attrib
Sourceval a_onstalled : Xml.event_handler -> [> `OnStalled ] attrib
Sourceval a_onstorage : Xml.event_handler -> [> `OnStorage ] attrib
Sourceval a_onsubmit : Xml.event_handler -> [> `OnSubmit ] attrib
Sourceval a_onsuspend : Xml.event_handler -> [> `OnSuspend ] attrib
Sourceval a_ontimeupdate : Xml.event_handler -> [> `OnTimeUpdate ] attrib
Sourceval a_onundo : Xml.event_handler -> [> `OnUndo ] attrib
Sourceval a_onunload : Xml.event_handler -> [> `OnUnload ] attrib
Sourceval a_onvolumechange : Xml.event_handler -> [> `OnVolumeChange ] attrib
Sourceval a_onwaiting : Xml.event_handler -> [> `OnWaiting ] attrib
Sourceval a_onload : Xml.event_handler -> [> `OnLoad ] attrib
Sourceval a_onloadeddata : Xml.event_handler -> [> `OnLoadedData ] attrib
Sourceval a_onloadedmetadata : Xml.event_handler -> [> `OnLoadedMetaData ] attrib
Sourceval a_onloadstart : Xml.event_handler -> [> `OnLoadStart ] attrib
Sourceval a_onmessage : Xml.event_handler -> [> `OnMessage ] attrib
Mouse events
Sourceval a_onclick : Xml.mouse_event_handler -> [> `OnClick ] attrib
Sourceval a_oncontextmenu : Xml.mouse_event_handler -> [> `OnContextMenu ] attrib
Sourceval a_ondblclick : Xml.mouse_event_handler -> [> `OnDblClick ] attrib
Sourceval a_ondrag : Xml.mouse_event_handler -> [> `OnDrag ] attrib
Sourceval a_ondragend : Xml.mouse_event_handler -> [> `OnDragEnd ] attrib
Sourceval a_ondragenter : Xml.mouse_event_handler -> [> `OnDragEnter ] attrib
Sourceval a_ondragleave : Xml.mouse_event_handler -> [> `OnDragLeave ] attrib
Sourceval a_ondragover : Xml.mouse_event_handler -> [> `OnDragOver ] attrib
Sourceval a_ondragstart : Xml.mouse_event_handler -> [> `OnDragStart ] attrib
Sourceval a_ondrop : Xml.mouse_event_handler -> [> `OnDrop ] attrib
Sourceval a_onmousedown : Xml.mouse_event_handler -> [> `OnMouseDown ] attrib
Sourceval a_onmouseup : Xml.mouse_event_handler -> [> `OnMouseUp ] attrib
Sourceval a_onmouseover : Xml.mouse_event_handler -> [> `OnMouseOver ] attrib
Sourceval a_onmousemove : Xml.mouse_event_handler -> [> `OnMouseMove ] attrib
Sourceval a_onmouseout : Xml.mouse_event_handler -> [> `OnMouseOut ] attrib
Sourceval a_ontouchstart : Xml.touch_event_handler -> [> `OnTouchStart ] attrib

Touch events

Sourceval a_ontouchend : Xml.touch_event_handler -> [> `OnTouchEnd ] attrib
Sourceval a_ontouchmove : Xml.touch_event_handler -> [> `OnTouchMove ] attrib
Sourceval a_ontouchcancel : Xml.touch_event_handler -> [> `OnTouchCancel ] attrib
Keyboard events
Sourceval a_onkeypress : Xml.keyboard_event_handler -> [> `OnKeyPress ] attrib
Sourceval a_onkeydown : Xml.keyboard_event_handler -> [> `OnKeyDown ] attrib
Sourceval a_onkeyup : Xml.keyboard_event_handler -> [> `OnKeyUp ] attrib

Other attributes

Sourceval a_allowfullscreen : unit -> [> `Allowfullscreen ] attrib
Sourceval a_allowpaymentrequest : unit -> [> `Allowpaymentrequest ] attrib
Sourceval a_autocomplete : Html_types.autocomplete_option wrap -> [> `Autocomplete ] attrib
Sourceval a_async : unit -> [> `Async ] attrib
Sourceval a_autofocus : unit -> [> `Autofocus ] attrib
Sourceval a_autoplay : unit -> [> `Autoplay ] attrib
Sourceval a_muted : unit -> [> `Muted ] attrib
Sourceval a_crossorigin : [< `Anonymous | `Use_credentials ] wrap -> [> `Crossorigin ] attrib
Sourceval a_integrity : string wrap -> [> `Integrity ] attrib
Sourceval a_mediagroup : string wrap -> [> `Mediagroup ] attrib
Sourceval a_challenge : Html_types.text wrap -> [> `Challenge ] attrib
Sourceval a_contenteditable : bool wrap -> [> `Contenteditable ] attrib
Sourceval a_contextmenu : Html_types.idref wrap -> [> `Contextmenu ] attrib
Sourceval a_controls : unit -> [> `Controls ] attrib
Sourceval a_dir : [< `Rtl | `Ltr ] wrap -> [> `Dir ] attrib
Sourceval a_draggable : bool wrap -> [> `Draggable ] attrib
Sourceval a_form : Html_types.idref wrap -> [> `Form ] attrib
Sourceval a_formaction : Xml.uri wrap -> [> `Formaction ] attrib
Sourceval a_formenctype : Html_types.contenttype wrap -> [> `Formenctype ] attrib
Sourceval a_formnovalidate : unit -> [> `Formnovalidate ] attrib
Sourceval a_formtarget : Html_types.text wrap -> [> `Formtarget ] attrib
Sourceval a_hidden : unit -> [> `Hidden ] attrib
Sourceval a_high : Html_types.float_number wrap -> [> `High ] attrib
Sourceval a_icon : Xml.uri wrap -> [> `Icon ] attrib
Sourceval a_ismap : unit -> [> `Ismap ] attrib
Sourceval a_keytype : Html_types.text wrap -> [> `Keytype ] attrib
Sourceval a_list : Html_types.idref wrap -> [> `List ] attrib
Sourceval a_loop : unit -> [> `Loop ] attrib
Sourceval a_low : Html_types.float_number wrap -> [> `High ] attrib
Sourceval a_max : Html_types.float_number wrap -> [> `Max ] attrib
Sourceval a_input_max : Html_types.number_or_datetime wrap -> [> `Input_Max ] attrib
Sourceval a_min : Html_types.float_number wrap -> [> `Min ] attrib
Sourceval a_input_min : Html_types.number_or_datetime wrap -> [> `Input_Min ] attrib
Sourceval a_inputmode : [< `None | `Text | `Decimal | `Numeric | `Tel | `Search | `Email | `Url ] wrap -> [> `Inputmode ] attrib
Sourceval a_novalidate : unit -> [> `Novalidate ] attrib
Sourceval a_open : unit -> [> `Open ] attrib
Sourceval a_optimum : Html_types.float_number wrap -> [> `Optimum ] attrib
Sourceval a_pattern : Html_types.text wrap -> [> `Pattern ] attrib
Sourceval a_placeholder : Html_types.text wrap -> [> `Placeholder ] attrib
Sourceval a_poster : Xml.uri wrap -> [> `Poster ] attrib
Sourceval a_preload : [< `None | `Metadata | `Audio ] wrap -> [> `Preload ] attrib
Sourceval a_pubdate : unit -> [> `Pubdate ] attrib
Sourceval a_radiogroup : Html_types.text wrap -> [> `Radiogroup ] attrib
Sourceval a_referrerpolicy : Html_types.referrerpolicy wrap -> [> `Referrerpolicy ] attrib
Sourceval a_required : unit -> [> `Required ] attrib
Sourceval a_reversed : unit -> [> `Reversed ] attrib
Sourceval a_sandbox : [< Html_types.sandbox_token ] list wrap -> [> `Sandbox ] attrib
Sourceval a_spellcheck : bool wrap -> [> `Spellcheck ] attrib
Sourceval a_scoped : unit -> [> `Scoped ] attrib
Sourceval a_seamless : unit -> [> `Seamless ] attrib
Sourceval a_sizes : (Html_types.number * Html_types.number) list option wrap -> [> `Sizes ] attrib
Sourceval a_span : Html_types.number wrap -> [> `Span ] attrib
Sourceval a_srclang : Html_types.nmtoken wrap -> [> `XML_lang ] attrib
Sourcetype image_candidate = [
  1. | `Url of uri
  2. | `Url_width of uri * Html_types.number
  3. | `Url_pixel of uri * Html_types.float_number
]
Sourceval a_srcset : image_candidate list wrap -> [> `Srcset ] attrib
Sourceval a_img_sizes : Html_types.text list wrap -> [> `Img_sizes ] attrib
Sourceval a_start : Html_types.number wrap -> [> `Start ] attrib
Sourceval a_step : Html_types.float_number option wrap -> [> `Step ] attrib
Sourceval a_translate : [< `Yes | `No ] wrap -> [> `Translate ] attrib
Sourceval a_wrap : [< `Soft | `Hard ] wrap -> [> `Wrap ] attrib
Sourceval a_version : Html_types.cdata wrap -> [> `Version ] attrib
Sourceval a_xmlns : [< `W3_org_1999_xhtml ] wrap -> [> `XMLns ] attrib
Sourceval a_manifest : Xml.uri wrap -> [> `Manifest ] attrib
Sourceval a_cite : Xml.uri wrap -> [> `Cite ] attrib
Sourceval a_xml_space : [< `Default | `Preserve ] wrap -> [> `XML_space ] attrib
Sourceval a_accesskey : Html_types.character wrap -> [> `Accesskey ] attrib

This attribute assigns an access key to an element. An access key is a single character from the document character set. NB: authors should consider the input method of the expected reader when specifying an accesskey.

Sourceval a_charset : Html_types.charset wrap -> [> `Charset ] attrib

This attribute specifies the character encoding of the resource designated by the link. Please consult the section on character encodings for more details.

Sourceval a_accept_charset : Html_types.charsets wrap -> [> `Accept_charset ] attrib
Sourceval a_accept : Html_types.contenttypes wrap -> [> `Accept ] attrib
Sourceval a_href : Xml.uri wrap -> [> `Href ] attrib

This attribute specifies the location of a Web resource, thus defining a link between the current element (the source anchor) and the destination anchor defined by this attribute.

Sourceval a_hreflang : Html_types.languagecode wrap -> [> `Hreflang ] attrib

This attribute specifies the base language of the resource designated by href and may only be used when href is specified.

Sourceval a_download : string option wrap -> [> `Download ] attrib
Sourceval a_rel : Html_types.linktypes wrap -> [> `Rel ] attrib

This attribute describes the relationship from the current document to the anchor specified by the href attribute. The value of this attribute is a space-separated list of link types.

This attribute is used to describe a reverse link from the anchor specified by the href attribute to the current document. The value of this attribute is a space-separated list of link types.

Sourceval a_tabindex : Html_types.number wrap -> [> `Tabindex ] attrib

This attribute specifies the position of the current element in the tabbing order for the current document. This value must be a number between 0 and 32767. User agents should ignore leading zeros.

Sourceval a_mime_type : Html_types.contenttype wrap -> [> `Mime_type ] attrib

This attribute gives an advisory hint as to the content type of the content available at the link target address. It allows user agents to opt to use a fallback mechanism rather than fetch the content if they are advised that they will get content in a content type they do not support.Authors who use this attribute take responsibility to manage the risk that it may become inconsistent with the content available at the link target address.

Sourceval a_datetime : Html_types.cdata wrap -> [> `Datetime ] attrib
Sourceval a_action : Xml.uri wrap -> [> `Action ] attrib

This attribute specifies a form processing agent. User agent behavior for a value other than an HTTP URI is undefined.

Sourceval a_checked : unit -> [> `Checked ] attrib

When the type attribute has the value "radio" or "checkbox", this boolean attribute specifies that the button is on. User agents must ignore this attribute for other control types.

Sourceval a_cols : Html_types.number wrap -> [> `Cols ] attrib

This attribute specifies the visible width in average character widths. Users should be able to enter longer lines than this, so user agents should provide some means to scroll through the contents of the control when the contents extend beyond the visible area. User agents may wrap visible text lines to keep long lines visible without the need for scrolling.

Sourceval a_enctype : Html_types.contenttype wrap -> [> `Enctype ] attrib
Sourceval a_label_for : Html_types.idref wrap -> [> `Label_for ] attrib
Sourceval a_for : Html_types.idref wrap -> [> `Label_for ] attrib
  • deprecated

    Use a_label_for

Sourceval a_output_for : Html_types.idrefs wrap -> [> `Output_for ] attrib
Sourceval a_for_list : Html_types.idrefs wrap -> [> `Output_for ] attrib
  • deprecated

    Use a_output_for

Sourceval a_maxlength : Html_types.number wrap -> [> `Maxlength ] attrib
Sourceval a_minlength : Html_types.number wrap -> [> `Minlength ] attrib
Sourceval a_method : [< `Get | `Post ] wrap -> [> `Method ] attrib
Sourceval a_formmethod : [< `Get | `Post ] wrap -> [> `Formmethod ] attrib
Sourceval a_multiple : unit -> [> `Multiple ] attrib
Sourceval a_name : Html_types.text wrap -> [> `Name ] attrib

This attribute assigns the control name.

Sourceval a_rows : Html_types.number wrap -> [> `Rows ] attrib

This attribute specifies the number of visible text lines. Users should be able to enter more lines than this, so user agents should provide some means to scroll through the contents of the control when the contents extend beyond the visible area.

Sourceval a_selected : unit -> [> `Selected ] attrib

When set, this boolean attribute specifies that this option is pre-selected.

Sourceval a_size : Html_types.number wrap -> [> `Size ] attrib
Sourceval a_src : Xml.uri wrap -> [> `Src ] attrib
Sourceval a_input_type : [< `Url | `Tel | `Text | `Time | `Search | `Password | `Checkbox | `Range | `Radio | `Submit | `Reset | `Number | `Hidden | `Month | `Week | `File | `Email | `Image | `Datetime_local | `Datetime | `Date | `Color | `Button ] wrap -> [> `Input_Type ] attrib
Sourceval a_text_value : Html_types.text wrap -> [> `Text_Value ] attrib

This attribute specifies the initial value of the control. If this attribute is not set, the initial value is set to the contents of the option element.

Sourceval a_int_value : Html_types.number wrap -> [> `Int_Value ] attrib
Sourceval a_value : Html_types.cdata wrap -> [> `Value ] attrib
Sourceval a_float_value : Html_types.float_number wrap -> [> `Float_Value ] attrib
Sourceval a_disabled : unit -> [> `Disabled ] attrib
Sourceval a_readonly : unit -> [> `ReadOnly ] attrib
Sourceval a_button_type : [< `Button | `Submit | `Reset ] wrap -> [> `Button_Type ] attrib
Sourceval a_script_type : Html_types.script_type wrap -> [> `Script_type ] attrib
Sourceval a_command_type : [< `Command | `Checkbox | `Radio ] wrap -> [> `Command_Type ] attrib
Sourceval a_menu_type : [< `Context | `Toolbar ] wrap -> [> `Menu_Type ] attrib
Sourceval a_label : Html_types.text wrap -> [> `Label ] attrib
Sourceval a_align : [< `Left | `Right | `Justify | `Char ] wrap -> [> `Align ] attrib
  • deprecated

    Use CSS text-align

Sourceval a_axis : Html_types.cdata wrap -> [> `Axis ] attrib
  • deprecated

    Not supported in HTML5

Sourceval a_colspan : Html_types.number wrap -> [> `Colspan ] attrib
Sourceval a_headers : Html_types.idrefs wrap -> [> `Headers ] attrib
Sourceval a_rowspan : Html_types.number wrap -> [> `Rowspan ] attrib
Sourceval a_scope : [< `Row | `Col | `Rowgroup | `Colgroup ] wrap -> [> `Scope ] attrib
  • deprecated

    Not supported in HTML5

Sourceval a_summary : Html_types.text wrap -> [> `Summary ] attrib
  • deprecated

    Move content elsewhere or to a <caption> child

Sourceval a_border : Html_types.pixels wrap -> [> `Border ] attrib
  • deprecated

    Use CSS border and/or border-width

Sourceval a_rules : [< `None | `Groups | `Rows | `Cols | `All ] wrap -> [> `Rules ] attrib
  • deprecated

    Use CSS border

Sourceval a_char : Html_types.character wrap -> [> `Char ] attrib
  • deprecated

    The char attribute is not supported in HTML5

Sourceval a_alt : Html_types.text wrap -> [> `Alt ] attrib
Sourceval a_height : Html_types.number wrap -> [> `Height ] attrib
Sourceval a_width : Html_types.number wrap -> [> `Width ] attrib
Sourcetype shape = [
  1. | `Rect
  2. | `Circle
  3. | `Poly
  4. | `Default
]
Sourceval a_shape : shape wrap -> [> `Shape ] attrib
Sourceval a_coords : Html_types.numbers wrap -> [> `Coords ] attrib
Sourceval a_usemap : Html_types.idref wrap -> [> `Usemap ] attrib
Sourceval a_data : Xml.uri wrap -> [> `Data ] attrib
Sourceval a_codetype : Html_types.contenttype wrap -> [> `Codetype ] attrib
  • deprecated

    Not supported in HTML5

Sourceval a_frameborder : [< `Zero | `One ] wrap -> [> `Frameborder ] attrib
  • deprecated

    Use CSS border

Sourceval a_marginheight : Html_types.pixels wrap -> [> `Marginheight ] attrib
  • deprecated

    Use CSS

Sourceval a_marginwidth : Html_types.pixels wrap -> [> `Marginwidth ] attrib
  • deprecated

    Use CSS

Sourceval a_scrolling : [< `Yes | `No | `Auto ] wrap -> [> `Scrolling ] attrib
Sourceval a_target : Html_types.frametarget wrap -> [> `Target ] attrib
Sourceval a_content : Html_types.text wrap -> [> `Content ] attrib
Sourceval a_http_equiv : Html_types.text wrap -> [> `Http_equiv ] attrib
Sourceval a_defer : unit -> [> `Defer ] attrib
Sourceval a_media : Html_types.mediadesc wrap -> [> `Media ] attrib
Sourceval a_style : string wrap -> [> `Style_Attr ] attrib
Sourceval a_property : string wrap -> [> `Property ] attrib

ARIA support

WAI-ARIA is a specification written by the W3C, defining a set of additional HTML attributes that can be applied to elements to provide additional semantics and improve accessibility wherever it is lacking.

See for example a WAI-ARIA tutorial.

Sourceval a_role : string list wrap -> [> `Role ] attrib
Sourceval a_aria : string -> string list wrap -> [> `Aria ] attrib

Basic support for WAI-ARIA attributes: a_aria "foo" corresponds to an "aria-foo" attribute.

Elements

Sourceval txt : string wrap -> [> Html_types.txt ] elt

Section

Sourceval article : ([< Html_types.article_attrib ], [< Html_types.article_content_fun ], [> Html_types.article ]) star

Grouping content

Sourceval figure : ?figcaption: [ `Top of [< Html_types.figcaption ] elt wrap | `Bottom of [< Html_types.figcaption ] elt wrap ] -> ([< Html_types.figure_attrib ], [< Html_types.figure_content_fun ], [> Html_types.figure ]) star

Semantic

Sourceval bdo : dir:[< `Ltr | `Rtl ] wrap -> ([< Html_types.bdo_attrib ], [< Html_types.bdo_content_fun ], [> Html_types.bdo ]) star

Hypertext

Sourceval a : ([< Html_types.a_attrib ], 'a, [> 'a Html_types.a ]) star

Edit

Sourceval del : ([< Html_types.del_attrib ], 'a, [> 'a Html_types.del ]) star
Sourceval ins : ([< Html_types.ins_attrib ], 'a, [> 'a Html_types.ins ]) star

Embedded

Sourceval object_ : ?params:[< Html_types.param ] elt list_wrap -> ([< Html_types.object__attrib ], 'a, [> `Object of 'a ]) star
Sourceval audio : ?src:Xml.uri wrap -> ?srcs:[< Html_types.source ] elt list_wrap -> ([< Html_types.audio_attrib ], 'a, [> 'a Html_types.audio ]) star
Sourceval video : ?src:Xml.uri wrap -> ?srcs:[< Html_types.source ] elt list_wrap -> ([< Html_types.video_attrib ], 'a, [> 'a Html_types.video ]) star
Sourceval canvas : ([< Html_types.canvas_attrib ], 'a, [> 'a Html_types.canvas ]) star
Sourceval area : alt:Html_types.text wrap -> ([< Html_types.common | `Alt | `Coords | `Shape | `Target | `Rel | `Media | `Hreflang | `Mime_type ], [> Html_types.area ]) nullary
Sourceval map : ([< Html_types.map_attrib ], 'a, [> 'a Html_types.map ]) star

Tables Data

Forms

Label authorizes only one control inside them that should be labelled with a for attribute (although it is not necessary). Such constraints are not currently enforced by the type-system

Sourceval datalist : ?children: [< `Options of [< Html_types.selectoption ] elt list_wrap | `Phras of [< Html_types.phrasing ] elt list_wrap ] -> ([< Html_types.datalist_attrib ], [> Html_types.datalist ]) nullary

Data

Sourceval entity : string -> [> Html_types.txt ] elt

entity "foo" is the HTML entity &foo;. Both numerical and named form are allowed.

Sourceval space : unit -> [> Html_types.txt ] elt
Sourceval cdata : string -> [> Html_types.txt ] elt
Sourceval cdata_script : string -> [> Html_types.txt ] elt
Sourceval cdata_style : string -> [> Html_types.txt ] elt

Interactive

Sourceval menu : ?children: [< `Lis of [< `Li of [< Html_types.common ] ] elt list_wrap | `Flows of [< Html_types.flow5 ] elt list_wrap ] -> ([< Html_types.menu_attrib ], [> Html_types.menu ]) nullary

Scripting

Style Sheets

Ruby

Deprecated

Sourceval pcdata : string wrap -> [> Html_types.pcdata ] elt
  • deprecated

    Use txt instead

Conversion with untyped representation

WARNING: These functions do not ensure HTML or SVG validity! You should always explicitly given an appropriate type to the output.

import signal converts the given XML signal into Tyxml elements. It can be used with HTML and SVG parsing libraries, such as Markup.

Sourceval tot : Xml.elt -> 'a elt
Sourceval toelt : 'a elt -> Xml.elt
Sourceval doc_toelt : doc -> Xml.elt
Sourceval to_xmlattribs : 'a attrib list -> Xml.attrib list
Sourceval to_attrib : Xml.attrib -> 'a attrib
Sourcemodule Unsafe : sig ... end

Unsafe features.