We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://perldoc.perl.org/perlop#Indented-Here-docs
template { data = <<~CONF F2 CONF destination = "custom/walk-inside.com.conf" }
Should generate
F2
It generates
Leading spaces are awkward. I could write without them:
template { data = <<CONF F2 CONF destination = "custom/walk-inside.com.conf" }
But in this case code folding feature is broken in many text editors, eg. Visual Studio, Sublime Text.
code folding
Implementing this feature will allow to use code folding and generate files without leading spaces.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected behavior
https://perldoc.perl.org/perlop#Indented-Here-docs
Should generate
Actual behavior
It generates
Leading spaces are awkward. I could write without them:
But in this case
code folding
feature is broken in many text editors, eg. Visual Studio, Sublime Text.Implementing this feature will allow to use
code folding
and generate files without leading spaces.The text was updated successfully, but these errors were encountered: