Update recognition of list item lines to match recent spec update.

This commit is contained in:
Solderpunk 2020-06-07 19:07:30 +02:00
parent 6306e4ef58
commit 5331d5254d
1 changed files with 1 additions and 1 deletions

View File

@ -823,7 +823,7 @@ Slow internet connection? Use 'set timeout' to be more patient.""")
tmpf.write(self._format_geminiitem(len(self.index), gi) + "\n")
except:
self._debug("Skipping possible link: %s" % line)
elif line.startswith("*"):
elif line.startswith("* "):
line = line[1:].lstrip("\t ")
tmpf.write(textwrap.fill(line, self.options["width"],
initial_indent = "", subsequent_indent=" ") + "\n")