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 ec7861b commit d4c95b7Copy full SHA for d4c95b7
src/lazydocs/generation.py
@@ -374,7 +374,7 @@ 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:
+ elif line.strip().startswith("-"):
378
# Allow bullet lists
379
out.append("\n" + (" " * indent) + line)
380
elif indent > blockindent:
0 commit comments