Skip to content

Commit 9b4b08f

Browse files
committed
Updated spec.
1 parent 2f81929 commit 9b4b08f

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

test/spec.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2302,13 +2302,15 @@ import Text.HTML.TagSoup
23022302
main :: IO ()
23032303
main = print $ parseTags tags
23042304
</code></pre>
2305+
okay
23052306
.
23062307
<pre language="haskell"><code>
23072308
import Text.HTML.TagSoup
23082309

23092310
main :: IO ()
23102311
main = print $ parseTags tags
23112312
</code></pre>
2313+
<p>okay</p>
23122314
````````````````````````````````
23132315

23142316

@@ -2320,12 +2322,14 @@ A script tag (type 1):
23202322

23212323
document.getElementById("demo").innerHTML = "Hello JavaScript!";
23222324
</script>
2325+
okay
23232326
.
23242327
<script type="text/javascript">
23252328
// JavaScript example
23262329

23272330
document.getElementById("demo").innerHTML = "Hello JavaScript!";
23282331
</script>
2332+
<p>okay</p>
23292333
````````````````````````````````
23302334

23312335

@@ -2338,13 +2342,15 @@ h1 {color:red;}
23382342

23392343
p {color:blue;}
23402344
</style>
2345+
okay
23412346
.
23422347
<style
23432348
type="text/css">
23442349
h1 {color:red;}
23452350

23462351
p {color:blue;}
23472352
</style>
2353+
<p>okay</p>
23482354
````````````````````````````````
23492355

23502356

@@ -2433,11 +2439,13 @@ A comment (type 2):
24332439

24342440
bar
24352441
baz -->
2442+
okay
24362443
.
24372444
<!-- Foo
24382445

24392446
bar
24402447
baz -->
2448+
<p>okay</p>
24412449
````````````````````````````````
24422450

24432451

@@ -2450,12 +2458,14 @@ A processing instruction (type 3):
24502458
echo '>';
24512459

24522460
?>
2461+
okay
24532462
.
24542463
<?php
24552464

24562465
echo '>';
24572466

24582467
?>
2468+
<p>okay</p>
24592469
````````````````````````````````
24602470

24612471

@@ -2483,6 +2493,7 @@ function matchwo(a,b)
24832493
}
24842494
}
24852495
]]>
2496+
okay
24862497
.
24872498
<![CDATA[
24882499
function matchwo(a,b)
@@ -2496,6 +2507,7 @@ function matchwo(a,b)
24962507
}
24972508
}
24982509
]]>
2510+
<p>okay</p>
24992511
````````````````````````````````
25002512

25012513

0 commit comments

Comments
 (0)