Loading generateSpecWebSite/gridTableTools.py +3 −1 Original line number Diff line number Diff line Loading @@ -160,6 +160,8 @@ def parseGridTableWithSpans(gridTable:str) -> tuple[GridTableRowList, GridTableR # Set content on the cell - concatenating multilines, flagging lists def handleCellContent(cell:GridCell, content:str) -> None: _c = content.strip() # Remove backslash from escaped pipes _c = _c.replace('\|', '|') if cell.content is None: # Previous empty cell cell.rowspan += 1 Loading Loading
generateSpecWebSite/gridTableTools.py +3 −1 Original line number Diff line number Diff line Loading @@ -160,6 +160,8 @@ def parseGridTableWithSpans(gridTable:str) -> tuple[GridTableRowList, GridTableR # Set content on the cell - concatenating multilines, flagging lists def handleCellContent(cell:GridCell, content:str) -> None: _c = content.strip() # Remove backslash from escaped pipes _c = _c.replace('\|', '|') if cell.content is None: # Previous empty cell cell.rowspan += 1 Loading