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
Given the following template:
{ "some_key": {{ A_JSON_OBJECT_VARIABLE }} }
The variable A_JSON_OBJECT_VARIABLE is defined as follows:
nl::json variables = nl::json{ {"A_JSON_OBJECT_VARIABLE", { {"key1", "value1"}, {"key2", "value2"} } } }
When now rendering with inja this is the result:
{ "some_key": "{"key1":"value1","key2":"value2"}" }
However we expected something like this:
{ "some_key": {"key1":"value1","key2":"value2"} }
PS: Indexing the inner keys works
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given the following template:
The variable A_JSON_OBJECT_VARIABLE is defined as follows:
When now rendering with inja this is the result:
However we expected something like this:
PS: Indexing the inner keys works
The text was updated successfully, but these errors were encountered: