Skip to content

Commit

Permalink
Paragraph ignores blank lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Mi Yu committed May 25, 2018
1 parent 2f81e16 commit fc981f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mistletoe/block_token.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def __init__(self, lines):

@staticmethod
def start(line):
return line != '\n'
return line.strip() != ''

@classmethod
def read(cls, lines):
Expand Down

0 comments on commit fc981f3

Please sign in to comment.