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
because the environment file is xml, we need to html encode characters like for example "&". example:
<variable name="url" value="www.google.ch?q=tobi&anotherParameter=1337" />
but if this variable gets used in an template which is a xml file:
<add key="url" value="${url}" />
it will html decode the value:
<add key="url" value="www.google.ch?q=tobi&anotherParameter=1337" />
which is invalid xml.
In environment file: &xxx; -> &xxx;xxx;
<variable name="url" value="www.google.ch?q=tobi&amp;anotherParameter=1337" />
in a template, give the user the ability to apply a filter for the value ${url | htmlencode}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
bug description
because the environment file is xml, we need to html encode characters like for example "&". example:
but if this variable gets used in an template which is a xml file:
it will html decode the value:
which is invalid xml.
current workaround:
In environment file: &xxx; -> &xxx;xxx;
idea how to fix
in a template, give the user the ability to apply a filter for the value ${url | htmlencode}
The text was updated successfully, but these errors were encountered: