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
item_wrap=False currently only supports list of dict
item_wrap=False
It should also support list of str and int
str
int
Input:
{"my_str_items":["a","b"]}
item_wrap=False output:
<all> <my_str_items type="list"> <item type="str">a</item> <item type="str">b</item> </my_str_items> </all>
item_wrap=True output:
<all> <my_str_items>a</my_str_items> <my_str_items>b</my_str_items> </all>
The text was updated successfully, but these errors were encountered:
resolve #93
a0297a9
Successfully merging a pull request may close this issue.
item_wrap=False
currently only supports list of dictIt should also support list of
str
andint
Input:
item_wrap=False output:
item_wrap=True output:
The text was updated successfully, but these errors were encountered: