Loading toMkdocs/gridTableTools.py +1 −0 Original line number Original line Diff line number Diff line Loading @@ -402,6 +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 # Put the value in a variable here because we need the initial value maxRowsTracker = rowsTracker.max() 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): Loading Loading
toMkdocs/gridTableTools.py +1 −0 Original line number Original line Diff line number Diff line Loading @@ -402,6 +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 # Put the value in a variable here because we need the initial value maxRowsTracker = rowsTracker.max() 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): Loading