Fix unindentation function.

This commit is contained in:
kenkeiras 2025-04-01 22:23:18 +00:00
parent e35fafb18e
commit 80c5dc793b

View File

@ -493,11 +493,11 @@ def render_block(content, acc, _class, is_code):
acc.append('</pre>')
def unindent(content):
base_indentation = min([0] + [
base_indentation = min([
len(l) - len(l.lstrip(' '))
for l in content.split('\n')
if len(l.strip()) > 0
])
] or [0])
content_lines = [
l[base_indentation:]
for l in content.split('\n')