diff --git a/toMkdocs/gridTableTools.py b/toMkdocs/gridTableTools.py
index 19ec017a50243f70fa7c72a595706cb63586fd51..ab2585a93e6b2609c78771b2d7d3b953ad0c7a93 100644
--- a/toMkdocs/gridTableTools.py
+++ b/toMkdocs/gridTableTools.py
@@ -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
 							columnCellIndex = 0
 
+							# Put the value in a variable here because we need the initial value
 							maxRowsTracker = rowsTracker.max()
 							# Go through all cells in a columnt
 							for columnIndex, content in enumerate(cellsContent):