(text)
| 156 | |
| 157 | |
| 158 | def untab(text): |
| 159 | lines = text.strip("\n").split("\n") |
| 160 | if not all([x.startswith(" ") or x == "" for x in lines]): |
| 161 | return "\n".join(lines) |
| 162 | |
| 163 | return "\n".join([x[4:] if len(x) >= 4 else "" for x in lines]) |
| 164 | |
| 165 | |
| 166 | def init_tutorials(): |