From: Alexandre Terrasa Date: Thu, 12 Oct 2017 00:46:11 +0000 (-0400) Subject: lib/markdown: fix `text` for nested markdown blocks X-Git-Url: http://nitlanguage.org lib/markdown: fix `text` for nested markdown blocks Signed-off-by: Alexandre Terrasa --- diff --git a/lib/markdown/markdown.nit b/lib/markdown/markdown.nit index 4ae99fb..ecf6064 100644 --- a/lib/markdown/markdown.nit +++ b/lib/markdown/markdown.nit @@ -1140,6 +1140,12 @@ class MDBlock text.append "\n" line = line.next end + var block = first_block + while block != null do + text.append block.text + text.append "\n" + block = block.next + end return text.write_to_string end end