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
At the moment to use content of one variable in string assigned to another variable I have to:
VARIABLE := "content" SINGLE := 'single ' + VARIABLE MULTI := """ multi """ + VARIABLE + """ """ @default: echo SINGLE {{SINGLE}} echo MULTI {{MULTI}}
what is more complex cases is very hard to read and non-trivial to write.
The output is:
$ just SINGLE single content MULTI multi content
I'd like to achieve the same with:
VARIABLE := "content" SINGLE := "single {{VARIABLE}}" MULTI := """ multi {{VARIABLE}} """ @default: echo SINGLE {{SINGLE}} echo MULTI {{MULTI}}
but at the moment the output is:
just SINGLE single {{VARIABLE}} MULTI multi {{VARIABLE}}
Is this fixable?
The text was updated successfully, but these errors were encountered:
This has been a longstanding feature request, but hasn't been implemented yet. See #11 for the issue, and #822 for the PR.
Sorry, something went wrong.
No branches or pull requests
At the moment to use content of one variable in string assigned to another variable I have to:
what is more complex cases is very hard to read and non-trivial to write.
The output is:
I'd like to achieve the same with:
but at the moment the output is:
Is this fixable?
The text was updated successfully, but these errors were encountered: