Update results end condition to look for a new line
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Oly 2018-12-10 08:38:05 +00:00
parent 8f6c241914
commit b2ba2897bd
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ t_NAME = r"^\#\+NAME:"
# t_IMG = r"^\[\[(\w|\.|-|_|/)+\]\]$"
t_IMG = r"^\[\["
t_IMG_END = r"\]\]"
t_RESULTS_END = r"^\:..*"
t_RESULTS_END = r"^\s*$"
t_END_LABELS = r"^(?!\[|\#).*"
t_BULLET_START = r"^\s*[\+|\-|0-9\.]"
t_BULLET_END = r"^\s*(?![\+|\-|0-9]).*$"