markdown2 :: MdBlockParser :: add_line
line to the current block
	redef fun add_line(line) do
		if first_line == null then
			first_line = line
		else
			other_lines.append(line)
			other_lines.add '\n'
		end
	end
					lib/markdown2/markdown_block_parsing.nit:891,2--898,4