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
A rather annoying feature of ufonormalizer is that it
indents the first dict element in a plist, compared to what Apple writes out by default, though it is more consistent when viewed from an XML lens, and
expands empty elements.
Apple serializers, plist and Python's plistlib will write by default:
Note the <dict></dict> which ufonormalizer will write instead of just <dict/>.
Both are things that should maybe be writer options in plist, but I'm not sure if the author is open to this? We are, after all, doing semantically unnecessary things...
The text was updated successfully, but these errors were encountered:
madig
changed the title
Plist serialization: option to indent first dict element
Plist serialization: option to indent first dict element, expand empty elements
Sep 15, 2021
Both are things that should maybe be writer options in plist, but I'm not sure if the author is open to this? We are, after all, doing semantically unnecessary things...
Better there than creating workarounds here IMO. Worth a try.
A rather annoying feature of ufonormalizer is that it
dict
element in a plist, compared to what Apple writes out by default, though it is more consistent when viewed from an XML lens, andApple serializers, plist and Python's plistlib will write by default:
but ufonormalizer will write:
Note the
<dict></dict>
which ufonormalizer will write instead of just<dict/>
.Both are things that should maybe be writer options in
plist
, but I'm not sure if the author is open to this? We are, after all, doing semantically unnecessary things...The text was updated successfully, but these errors were encountered: