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
This only happens when the template is coming from a file. For instance this works as intended:
--> HELLO="hello there" moban "Here is my greeting: {{HELLO}}" Here is my greeting: hello there
But if you are getting it from a file for example template.txt.jj2:
template.txt.jj2
{{HELLO}}
where data.yaml is:
data.yaml
HELLO: "hello there"
These result:
--> moban -c data.yaml -t example.txt.jj2 hello there hello there --> HELLO="hello there" moban -t example.txt.jj2 hello there hello there
I have a fix, just prepping the PR.
The text was updated successfully, but these errors were encountered:
yep, well spotted. I look forward to your update.
Sorry, something went wrong.
🔬 reproduce #393.
823ee4e
be6c38f
No branches or pull requests
This only happens when the template is coming from a file. For instance this works as intended:
But if you are getting it from a file for example
template.txt.jj2
:where
data.yaml
is:These result:
I have a fix, just prepping the PR.
The text was updated successfully, but these errors were encountered: