Fix unindentation function.

This commit is contained in:
Sergio Martínez Portela 2025-04-02 00:20:30 +02:00
parent 6d3e444963
commit 4f0d908de1

View File

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