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

Fix for merged rows

parent 22f67aca
No related branches found
No related tags found
1 merge request!1Restructuring and cleaning scripts for Mkdocs
...@@ -405,7 +405,7 @@ def parseGridTableWithSpans(gridTable:str) -> tuple[GridTableRowList, GridTableR ...@@ -405,7 +405,7 @@ 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] += 1 # That actual row will have more than one row rowsTracker[columnCellIndex] = max(rowsTracker) + 1 # That actual row will have more than one row
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.
Finish editing this message first!
Please register or to comment