diff --git a/webinterface.py b/webinterface.py index 81ba9bb0f..41ba6e0ad 100644 --- a/webinterface.py +++ b/webinterface.py @@ -5172,11 +5172,7 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str, for lineStr in linksList: if ' ' not in lineStr: continue - if '://' not in lineStr and '.html' not in lineStr: - continue lineStr = lineStr.strip() - if lineStr.startswith('#'): - continue words = lineStr.split(' ') # get the link linkStr = None @@ -5197,7 +5193,7 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str, lineStr + '

\n' else: if lineStr: - if lineStr.startswith('#'): + if lineStr.startswith('#') or lineStr.startswith('*'): linestr = lineStr[1:].strip() htmlStr += \ '
' + lineStr + '
\n'