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

Fixes for merged rows

parent 4bfce4d0
No related branches found
No related tags found
1 merge request!1Restructuring and cleaning scripts for Mkdocs
...@@ -407,6 +407,9 @@ def parseGridTableWithSpans(gridTable:str) -> tuple[GridTableRowList, GridTableR ...@@ -407,6 +407,9 @@ def parseGridTableWithSpans(gridTable:str) -> tuple[GridTableRowList, GridTableR
# Check whether a cell contains a header separator # Check whether a cell contains a header separator
if matchGridTableBodySeparatorLine.match(content): # A new row is to be added if matchGridTableBodySeparatorLine.match(content): # A new row is to be added
rowsTracker[columnCellIndex] = maxRowsTracker + 1 # That actual row will have more than one row rowsTracker[columnCellIndex] = maxRowsTracker + 1 # That actual row will have more than one row
rowIndex = rowsTracker[columnCellIndex]
cell = rows[rowIndex][columnCellIndex]
cell.listFlag = False cell.listFlag = False
columnForward = 0 columnForward = 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment