k2tf
k2tf copied to clipboard
Support HEREDOC for multi-line config values
I've been converting a bunch of complex multi-line config files over. For readability, it would be great to support optional HEREDOC style multi-line string values.
For example rather than:
...
value = "line1\nline2\n...lineX\n"
...
The tool could generate:
...
value = <<EOF
line1
line2
...
lineX
EOF
...
Thanks for pulling together such a great tool.
Good suggestion - thanks @nigelellis.