Comment by masklinn
2 years ago
FWIW your examples are very unclear as they use text formatting, you need to indent lines by 4 spaces (with an empty line before and after) for a code block e.g.
if a == b: print("x")
versus
if a == b:
print("x")
The minimum required is actually only two spaces.