From fc981f3355e3c94bda0d494ec4e70fdb058d8e3b Mon Sep 17 00:00:00 2001 From: Mi Yu Date: Fri, 25 May 2018 19:10:58 -0400 Subject: [PATCH] Paragraph ignores blank lines --- mistletoe/block_token.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mistletoe/block_token.py b/mistletoe/block_token.py index 87d82c28..3da7a388 100644 --- a/mistletoe/block_token.py +++ b/mistletoe/block_token.py @@ -214,7 +214,7 @@ def __init__(self, lines): @staticmethod def start(line): - return line != '\n' + return line.strip() != '' @classmethod def read(cls, lines):