File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change
1
+ 2.0.0
2
+ -----
3
+
4
+ - New inline and display math markup (@giltho , #5 )
5
+
6
+ 1.0.1
7
+ -----
8
+
9
+ - OCaml 5.0 support (@talex5 , #6 )
10
+
1
11
1.0.0
2
12
-----
3
13
Original file line number Diff line number Diff line change @@ -23,7 +23,8 @@ type inline_element =
23
23
| `Reference of
24
24
reference_kind * string with_location * inline_element with_location list
25
25
| `Link of string * inline_element with_location list
26
- | `Math_span of string ]
26
+ | `Math_span of string (* * @since 2.0.0 *)
27
+ ]
27
28
(* * Inline elements are equivalent to what would be found in a [span] in HTML.
28
29
Mostly these are straightforward. The [`Reference] constructor takes a triple
29
30
whose second element is the reference itself, and the third the replacement
@@ -42,7 +43,7 @@ type nestable_block_element =
42
43
[ `Unordered | `Ordered ]
43
44
* [ `Light | `Heavy ]
44
45
* nestable_block_element with_location list list
45
- | `Math_block of string ]
46
+ | `Math_block of string (* * @since 2.0.0 *) ]
46
47
(* * Some block elements may be nested within lists or tags, but not all.
47
48
The [`List] constructor has a parameter of type [\[`Light | `Heavy\]].
48
49
This corresponds to the syntactic constructor used (see the
You can’t perform that action at this time.
0 commit comments