Skip to content

Commit 3f9bd5d

Browse files
author
Waylan Limberg
committed
No longer skipping all tests from PHP test suite. We skip some because PHP differs from markdown.pl and we match markdown.pl. A few others are skipped because we have to adjust for a few edge cases. See comments in tests/php/test.cfg for details.
1 parent c0a7a4b commit 3f9bd5d

File tree

1 file changed

+38
-1
lines changed

1 file changed

+38
-1
lines changed

tests/php/test.cfg

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,45 @@
22
normalize=1
33
input_ext=.text
44
output_ext=.xhtml
5-
skip=1
5+
#skip=1
66

77
[Quotes in attributes]
88
# attributes get output in differant order
99
skip=1
10+
11+
[Inline HTML (Span)]
12+
# Backtick in raw HTML attribute TODO: fixme
13+
skip=1
14+
15+
[Backslash escapes]
16+
# Weird whitespace issue in output
17+
skip=1
18+
19+
[Ins & del]
20+
# Our behavior follows markdown.pl I think PHP is wrong here
21+
skip=1
22+
23+
[Auto Links]
24+
# TODO: fix raw HTML so is doesn't match <hr@example.com> as a <hr>.
25+
skip=1
26+
27+
[Empty List Item]
28+
# We match markdown.pl here. Maybe someday we'll support this
29+
skip=1
30+
31+
[Headers]
32+
# TODO: fix headers to not require blank line before
33+
skip=1
34+
35+
[Mixed OLs and ULs]
36+
# We match markdown.pl here. I think PHP is wrong here
37+
skip=1
38+
39+
[Emphasis]
40+
# We have various minor differances in combined & incorrect em markup.
41+
# Maybe fix a few of them - but most aren't too important
42+
skip=1
43+
44+
[Code block in a list item]
45+
# We match markdown.pl - not sure how php gets that output??
46+
skip=1

0 commit comments

Comments
 (0)