Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support HEREDOC for multi-line config values #66

Open
nigelellis opened this issue Jun 22, 2020 · 1 comment
Open

Support HEREDOC for multi-line config values #66

nigelellis opened this issue Jun 22, 2020 · 1 comment
Labels
enhancement New feature or request

Comments

@nigelellis
Copy link

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.

@sl1pm4t sl1pm4t added the enhancement New feature or request label Jul 1, 2020
@sl1pm4t
Copy link
Owner

sl1pm4t commented Jul 1, 2020

Good suggestion - thanks @nigelellis.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants