Commit 0d9f75e0 authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

Fix to take into account spaces at the beginning of the line

parent 0e14f4fd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -160,7 +160,7 @@ def parseGridTableWithSpans(gridTable:str) -> tuple[GridTableRowList, GridTableR
	nextListElementMark = '@'
	
	# Split the input into lines
	lines:list[str] = [line.strip() for line in gridTable.strip().split('\n')]
	lines:list[str] = [line for line in gridTable.split('\n')]


	# Detect separator lines by pattern (it does not take into account partial separators