1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
DEFAULT:
normalize: True
input_ext: .text
output_ext: .xhtml
#skip: True
Quotes in attributes:
# attributes get output in differant order
skip: True
Inline HTML (Span):
# Backtick in raw HTML attribute TODO: fixme
skip: True
Backslash escapes:
# Weird whitespace issue in output
skip: True
Ins & del:
# Our behavior follows markdown.pl I think PHP is wrong here
skip: True
Auto Links:
# TODO: fix raw HTML so is doesn't match <hr@example.com> as a <hr>.
skip: True
Empty List Item:
# We match markdown.pl here. Maybe someday we'll support this
skip: True
Headers:
# TODO: fix headers to not require blank line before
skip: True
Mixed OLs and ULs:
# We match markdown.pl here. I think PHP is wrong here
skip: True
Emphasis:
# We have various minor differances in combined & incorrect em markup.
# Maybe fix a few of them - but most aren't too important
skip: True
Code block in a list item:
# We match markdown.pl - not sure how php gets that output??
skip: True
PHP-Specific Bugs:
# Not sure what to make of the escaping stuff here. Why is PHP not removing a blackslash?
skip: True
|