merge-requests/30/head
Bob Mottram 2020-10-01 23:58:11 +01:00
parent 11f9fe96e2
commit 3746d145ff
1 changed files with 7 additions and 8 deletions

View File

@ -5198,9 +5198,8 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str,
' <p><a href="' + linkStr + '">' + \ ' <p><a href="' + linkStr + '">' + \
lineStr + '</a></p>\n' lineStr + '</a></p>\n'
else: else:
if lineStr:
if lineStr.startswith('#') or lineStr.startswith('*'): if lineStr.startswith('#') or lineStr.startswith('*'):
linestr = lineStr[1:].strip() lineStr = lineStr[1:].strip()
htmlStr += \ htmlStr += \
' <h5>' + lineStr + '</h5>\n' ' <h5>' + lineStr + '</h5>\n'
else: else: