git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/2.2-stable@11230
e93f8b46-1217-0410-a6f0-
8f06a7374b81
l = 1
started = false
ended = false
- text.scan(/(((?:.*?)(\A|\r?\n\s*\r?\n))(h(\d+)(#{A}#{C})\.(?::(\S+))? (.*?)$)|.*)/m).each do |all, content, lf, heading, level|
+ text.scan(/(((?:.*?)(\A|\r?\n\s*\r?\n))(h(\d+)(#{A}#{C})\.(?::(\S+))?[ \t](.*?)$)|.*)/m).each do |all, content, lf, heading, level|
if heading.nil?
if ended
after << all
end
end
+ def test_get_section_should_support_headings_starting_with_a_tab
+ text = <<-STR
+h1.\tHeading 1
+
+Content 1
+
+h1. Heading 2
+
+Content 2
+STR
+
+ assert_match /\Ah1.\tHeading 1\s+Content 1\z/, @formatter.new(text).get_section(1).first
+ end
+
private
def assert_html_output(to_test, expect_paragraph = true)