We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bee1058 commit 7972659Copy full SHA for 7972659
test/test_ppx.ml
@@ -81,6 +81,14 @@ let basics = "ppx basics", tyxml_tests Html.[
81
[%html " bar<p></p>foo "],
82
[pcdata " bar" ; p [] ; pcdata "foo " ] ;
83
84
+ "whitespace in ul",
85
+ [[%html "<ul> <li>foo</li> <li>bar</li> </ul>"]],
86
+ [ul [li [pcdata "foo"] ; li [pcdata "bar"]]] ;
87
+
88
+ "whitespace in ol",
89
+ [[%html "<ol> <li>foo</li> <li>bar</li> </ol>"]],
90
+ [ol [li [pcdata "foo"] ; li [pcdata "bar"]]] ;
91
92
]
93
94
let attribs = "ppx attribs", tyxml_tests Html.[
0 commit comments