Iterable<String> indent(Iterable<String> lines, [int depth = 1]) { final indent = ' ' * depth; return lines.map((line) => '$indent$line'); }