pretty print the xml and collaps all empty elements

This commit is contained in:
Gregory John Casamento 2023-07-13 19:14:29 -04:00
parent 8df10b161f
commit 3d373f450a

View file

@ -3503,7 +3503,7 @@ static void _real_close(GormDocument *self,
// Recursively build the XLIFF document from the GormDocument...
[self _buildXLIFFDocumentWithParentNode: group];
NSData *data = [xliffDocument XMLData];
NSData *data = [xliffDocument XMLDataWithOptions: NSXMLNodePrettyPrint | NSXMLNodeCompactEmptyElement ];
NSString *xmlString = [NSString stringWithUTF8String: [data bytes]];
result = [xmlString writeToFile: name atomically: YES];