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

Fix to take into account spaces at the beginning of the line

parent 0e14f4fd
No related branches found
No related tags found
1 merge request!1Restructuring and cleaning scripts for Mkdocs
......@@ -160,7 +160,7 @@ def parseGridTableWithSpans(gridTable:str) -> tuple[GridTableRowList, GridTableR
nextListElementMark = '@'
# Split the input into lines
lines:list[str] = [line.strip() for line in gridTable.strip().split('\n')]
lines:list[str] = [line for line in gridTable.split('\n')]
# Detect separator lines by pattern (it does not take into account partial separators
......
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