At present C# serializer knows how to print comments and do some formatting (we had to create micro xml serializer within xslt to serialize xml comments). C#'s formatting is not as advanced as java's one, but it should not be such in the first place, as C# text tends to be more neat due to properties and events. Compare:
Java: instance.getItems().get(10).setValue(value);
instance.getItems().get(10).setValue(value);
vs
C#: instance.Items[10].Value = value;
instance.Items[10].Value = value;
TODO: implement API existing in jxom and missing in C# xom. This includes:
yield
Update can be found at: jxom/C# xom.
June, 24 update: name and namespace normalizations are implemented.
Remember Me
a@href@title, b, blockquote@cite, em, i, strike, strong, sub, super, u