Skip to content
Snippets Groups Projects
Commit 4f4e21fe authored by Andreas Kraft's avatar Andreas Kraft
Browse files

Further improved dangling spaces after last grid table rows

parent be71662c
No related branches found
No related tags found
1 merge request!1Restructuring and cleaning scripts for Mkdocs
...@@ -349,6 +349,7 @@ def parseGridTableWithSpans(gridTable:str) -> tuple[GridTableRowList, GridTableR ...@@ -349,6 +349,7 @@ def parseGridTableWithSpans(gridTable:str) -> tuple[GridTableRowList, GridTableR
if rowLines: if rowLines:
# Combine multiline content into single strings for each cell # Combine multiline content into single strings for each cell
for line in rowLines: for line in rowLines:
line = line.rstrip()
if isSeparator(line) and not inDataRow: if isSeparator(line) and not inDataRow:
inDataRow = True inDataRow = True
# Add delimiter alignment check for separator lines # Add delimiter alignment check for separator lines
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment