Skip to content
Snippets Groups Projects
Commit 0fbabb1a authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

Fix for merged rows

parent 852ecc72
No related branches found
No related tags found
1 merge request!1Restructuring and cleaning scripts for Mkdocs
...@@ -402,7 +402,7 @@ def parseGridTableWithSpans(gridTable:str) -> tuple[GridTableRowList, GridTableR ...@@ -402,7 +402,7 @@ def parseGridTableWithSpans(gridTable:str) -> tuple[GridTableRowList, GridTableR
if len(cellsContent) <= numberOfColumns: # Colspan: Positions of | with respect to + need to be determined if len(cellsContent) <= numberOfColumns: # Colspan: Positions of | with respect to + need to be determined
columnCellIndex = 0 columnCellIndex = 0
maxRowsTracker = max(rowsTracker) maxRowsTracker = rowsTracker.max()
# Go through all cells in a columnt # Go through all cells in a columnt
for columnIndex, content in enumerate(cellsContent): for columnIndex, content in enumerate(cellsContent):
rowIndex = rowsTracker[columnCellIndex] rowIndex = rowsTracker[columnCellIndex]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment