File tree 2 files changed +13
-15
lines changed
test/integration/markdown.t
2 files changed +13
-15
lines changed Original file line number Diff line number Diff line change 21
21
22
22
# ##### type t
23
23
24
- Doc for type t .
24
+ Doc for ` type t`
25
25
26
26
# ##### type a = t
27
27
39
39
40
40
# ##### type foo
41
41
42
- docs for x
43
-
44
42
# ##### type bar'
45
43
46
44
# ##### module type Foo' = sig
51
49
52
50
# ##### | Mon
53
51
54
- first day of the week .
52
+ Docs for `days`
55
53
56
54
# ##### type num = [
57
55
58
56
# ##### | `One
59
57
58
+ Docs for `` `One``
59
+
60
60
# ##### ]
61
61
62
62
# ##### end
75
75
76
76
# ##### fname : string ;
77
77
78
- first name
78
+ Docs for `fname`
79
79
80
80
# ##### lname : string ;
81
81
183
183
184
184
# ##### type t
185
185
186
- Doc for type t .
186
+ Doc for ` type t`
187
187
188
188
<a id="type-a" ></a >
189
189
215
215
216
216
# ##### type foo
217
217
218
- docs for x
219
-
220
218
<a id="type-bar'" ></a >
221
219
222
220
# ##### type bar'
237
235
238
236
# ##### | Mon
239
237
240
- first day of the week .
238
+ Docs for `days`
241
239
242
240
<a id="type-num" ></a >
243
241
247
245
248
246
# ##### | `One
249
247
248
+ Docs for `` `One``
249
+
250
250
# ##### ]
251
251
252
252
# ##### end
275
275
276
276
# ##### fname : string ;
277
277
278
- first name
278
+ Docs for `fname`
279
279
280
280
<a id="type-name.lname" ></a >
281
281
365
365
- Mon
366
366
367
367
- Tue
368
-
Original file line number Diff line number Diff line change 25
25
26
26
module type Foo = sig
27
27
type foo
28
- (* * docs for x *)
29
28
30
29
include Bar '
31
30
32
31
module type Foo' = sig
33
32
type foo'
34
33
35
- type days = Mon (* * first day of the week . *)
34
+ type days = Mon (* * Docs for [days] . *)
36
35
37
- type num = [ `One ]
36
+ type num = [ `One (* * Docs for [`One] *) ]
38
37
end
39
38
end
40
39
41
40
type other_names = { given : string ; nickname : string }
42
41
43
42
type name = {
44
- fname : string ; (* * first name *)
43
+ fname : string ; (* * Docs for [fname] *)
45
44
lname : string ;
46
45
others : other_names ;
47
46
}
You can’t perform that action at this time.
0 commit comments