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

Fix double backslash

parent 39715c63
Loading
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -160,6 +160,8 @@ def parseGridTableWithSpans(gridTable:str) -> tuple[GridTableRowList, GridTableR
	# Set content on the cell - concatenating multilines, flagging lists
	def handleCellContent(cell:GridCell, content:str) -> None:
		_c = content.strip()
		# Remove backslash from escaped pipes
		_c = _c.replace('\|', '|')
		
		if cell.content is None:	# Previous empty cell
			cell.rowspan += 1