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
The Python textwrap module has options for controlling the left margin of the wrapped lines. They two settings are called initial_indent and subsequent_indent and if they're set to "* " (asteris, space) and " " (space, space) respectively, your wrapped text becomes a nice little list item.
That sounds useful, so let's add support for that too.
The text was updated successfully, but these errors were encountered:
The Python textwrap module has options for controlling the left margin of the wrapped lines. They two settings are called
initial_indent
andsubsequent_indent
and if they're set to"* "
(asteris, space) and" "
(space, space) respectively, your wrapped text becomes a nice little list item.That sounds useful, so let's add support for that too.
The text was updated successfully, but these errors were encountered: