git-svn-id: http://svn.redmine.org/redmine/branches/3.3-stable@17248
e93f8b46-1217-0410-a6f0-
8f06a7374b81
:strikethrough => true,
:superscript => true,
:no_intra_emphasis => true,
- :footnotes => true
+ :footnotes => true,
+ :lax_spacing => true
)
end
end
assert_equal '<p>This is a <a href="/issues">link</a></p>', @formatter.new(text).to_html.strip
end
+ def test_markdown_should_not_require_surrounded_empty_line
+ text = <<-STR
+This is a list:
+* One
+* Two
+STR
+ assert_equal "<p>This is a list:</p>\n\n<ul>\n<li>One</li>\n<li>Two</li>\n</ul>", @formatter.new(text).to_html.strip
+ end
+
end
end