We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 148601e commit df76a52Copy full SHA for df76a52
src/lazydocs/generation.py
@@ -374,6 +374,9 @@ def _doc2md(obj: Any) -> str:
374
out.append(line.replace("::", ":\n```"))
375
elif quote_block:
376
out.append(line.strip())
377
+ elif line.strip().startswith("-") and not arg_list:
378
+ # Allow bullet lists
379
+ out.append("\n" + (" " * indent) + line)
380
elif indent > blockindent:
381
if arg_list and not literal_block and _RE_TYPED_ARGSTART.match(line):
382
# start of new argument
0 commit comments