purescript-cheerio/test/Test/HtmlEx.purs

12 lines
188 B
Haskell
Raw Permalink Normal View History

2018-01-16 04:35:48 +00:00
module Test.HtmlEx where
htmlEx :: String
2023-10-28 19:47:41 +00:00
htmlEx =
"""
2018-01-16 04:35:48 +00:00
<ul id="fruits">
<li class="apple">Apple</li>
<li class="orange">Orange</li>
<li class="pear">Pear</li>
</ul>
2023-10-28 20:49:52 +00:00
"""