this repo has no description
1open Types
2
3type t
4
5val elt : Inline.t -> t
6
7val entity : Inline.entity -> t
8
9val ignore : t -> t
10
11val span : ?attr:string -> t -> t
12
13val txt : string -> t
14
15val noop : t
16
17val cut : t
18
19val sp : t
20
21val list : ?sep:t -> f:('a -> t) -> 'a list -> t
22
23val box_hv : t -> t
24
25val box_hv_no_indent : t -> t
26
27val render : t -> Source.t
28
29val code : ?attr:string list -> t -> Inline.t
30
31val documentedSrc : t -> DocumentedSrc.t
32
33val codeblock : ?attr:Class.t -> t -> Block.t
34
35val keyword : string -> t
36
37val mode : string -> t
38
39module Infix : sig
40 val ( ++ ) : t -> t -> t
41end