Commit 55dd8f98 authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

Previous line to table ignored if it is a line break



Signed-off-by: Miguel Angel Reina Ortega's avatarMiguel Angel Reina Ortega <miguelangel.reinaortega@etsi.org>
parent 8970d22e
......@@ -82,7 +82,8 @@ def parse_all_examples(txt):
if is_example_table(line):
linetext = str(line.rows[0].cells[0].text)
elif isinstance(line, str):
linetext = line
if line != '\r\n' and line != '\n':
linetext = line
else:
continue
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment