Commit 12be346b authored by Vladimír Štill's avatar Vladimír Štill
Browse files

checker: Less spaces in html rendering

parent b5f7e297
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ def wrap(text: str, tag: str, **options: str) -> str:


def paragraph(*args: Any) -> str:
    return wrap(' '.join(str(a) for a in args), "p")
    return wrap(' '.join(str(a) for a in args), "p", style="margin-bottom: 0px")


def code(val: str) -> str: