You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<cops>
name stein\
son
age 25
<colors>
color \#000000\
white
</colors>
</cops>
The parser produces the following output: {'cops': {'name': 'stein son', 'age': '25', 'colors': {'color': '#000000 white'}}}
I don't want the extra whitespace between stein and son or betweem #000000 and white. Is there a way by which we can get the parsed output without the extra whitespaces?
The text was updated successfully, but these errors were encountered:
Consider the following config:
The parser produces the following output:
{'cops': {'name': 'stein son', 'age': '25', 'colors': {'color': '#000000 white'}}}
I don't want the extra whitespace between stein and son or betweem #000000 and white. Is there a way by which we can get the parsed output without the extra whitespaces?
The text was updated successfully, but these errors were encountered: