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 19ff403 commit 0d987b4Copy full SHA for 0d987b4
mdformat_mkdocs/mdit_plugins/_material_deflist.py
@@ -91,9 +91,9 @@ def render_material_definition_body(
91
indented_lines = [f"{marker}{lines[0]}"] + [
92
f"{' ' * indent_width}{line}" if line else "" for line in lines[1:]
93
]
94
- indented_lines = ("" if tight_list else "\n") + "\n".join(indented_lines)
+ joined_lines = ("" if tight_list else "\n") + "\n".join(indented_lines)
95
next_sibling = node.next_sibling
96
- return indented_lines + (
+ return joined_lines + (
97
"\n" if (next_sibling and next_sibling.type == "dt") else ""
98
)
99
finally:
0 commit comments