From: Artem <ne...@gm...> - 2008-06-23 20:23:42
|
Hi, I extended test suite with some markdown2 tests, failed tests listed below. I didn't include some tests from tm-cases, because they use option files. I committed version with extended test suite here: http://gitorious.org/projects/python-markdown/repos/gsoc2008 tm-cases: ====== **blockquote** ">" transforms to ">" [Trent wrote] > no way [Jeff wrote] > way other implementations consider ">" in this test as blockquote **escapes** problem with hash characters escaping at the end of header **lists2** ul followed by ol transforms to one ul **mising_link_defn** works fine in markdown 1.7, but don't work in markdown from repository. **parens_in_url_4** this input: [Inline link 4 with non-escaped parens](</url(test)> "title"). gives invalid output: <p><a href="</url(test">Inline link 4 with non-escaped parens</a>> "title"). </p> **raw_html** HTML comments escaping test <!-- *blah* --> **sublist_para** test fails, sublist with 2-spaces indentation **tricky_anchors** fails on: [only open [bracket(/in/) text](/url/ 'a title') but all the other markdown implementations pass this test. php-markdown-cases: ============== **Blackslash escapes** Seems right but differ from other markdown implementations **Empasis** inline patterns problem **Images (Untitled)** Behavior differs from others implementations on:  expected: <p><img src="/url/" alt="alt text"/> </p> but gives that: <p><img src="</url/>" alt="alt text"/> </p> **Inline HTML (Simple)** skips markdown paragraph **Inline HTML (Span)** don't recognize html blocks **Links, inline style** **Nesting** Inline patterns problem **Parens in URL** **PHP-Specific Bugs** **Tight blocks** blockquote problem tm-cases excluded list: =============== basic_safe_mode basic_safe_mode_escape auto_link_safe_mode code_safe_emphasis emacs_head_vars emacs_tail_vars footnotes footnotes_letters footnotes_markup footnotes_safe_mode_escape nested_list_safe_mode issue2_safe_mode_borks_markup issue3_bad_code_color_hack link_defn_spaces_in_url link_patterns link_patterns_double_hit link_patterns_edge_cases mismatched_footnotes nested_lists_safe_mode pyshell syntax_color |