You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🐛 fix: keep non-paragraph help nodes out of the option line
Whitespace-only help crashed with IndexError because nested_parse
returned no nodes and the code indexed the first one. Help that parsed
to a bullet list or several paragraphs got spliced into the option's
paragraph, which nests <li> inside <p> and drops every paragraph after
the first. An empty :description: override left an empty <p>.
Only a leading paragraph now shares the option line; other nodes go
under the list item as blocks, and blank description or epilog text
renders nothing.
0 commit comments