Loading toMkdocs/gridTableTools.py +4 −4 Original line number Diff line number Diff line Loading @@ -497,13 +497,13 @@ def parseGridTableWithSpans(gridTable:str) -> tuple[GridTableRowList, GridTableR # Bold replacements # Regex to detect markdown bold formatting in cell content if cell.content is not None: cell.content = matchBold.sub(r'\1<strong>\g<text></strong>', cell.content) #if cell.content is not None: # cell.content = matchBold.sub(r'\1<strong>\g<text></strong>', cell.content) # Italic replacements # Regex to detect markdown italic formatting in cell content if cell.content is not None: cell.content = matchItalic.sub(r'\1<i>\g<text></i>', cell.content) #if cell.content is not None: # cell.content = matchItalic.sub(r'\1<i>\g<text></i>', cell.content) # Correct newlines characters for headerRow in headerRows: Loading Loading
toMkdocs/gridTableTools.py +4 −4 Original line number Diff line number Diff line Loading @@ -497,13 +497,13 @@ def parseGridTableWithSpans(gridTable:str) -> tuple[GridTableRowList, GridTableR # Bold replacements # Regex to detect markdown bold formatting in cell content if cell.content is not None: cell.content = matchBold.sub(r'\1<strong>\g<text></strong>', cell.content) #if cell.content is not None: # cell.content = matchBold.sub(r'\1<strong>\g<text></strong>', cell.content) # Italic replacements # Regex to detect markdown italic formatting in cell content if cell.content is not None: cell.content = matchItalic.sub(r'\1<i>\g<text></i>', cell.content) #if cell.content is not None: # cell.content = matchItalic.sub(r'\1<i>\g<text></i>', cell.content) # Correct newlines characters for headerRow in headerRows: Loading