Mingun
Mingun
We do not have much examples of writing yet. Basically, the [example from `Writer`](https://docs.rs/quick-xml/latest/quick_xml/writer/struct.Writer.html) is the one example of writing which also shows how to transform document (it is not...
Yes, you need to write new document
This code looks awful https://github.com/emilk/egui/blob/23728e145ec52bd1193f6f0123973763de4dbb3d/crates/egui/src/widgets/text_edit/builder.rs#L1002-L1004 I would be better introduce a `Shortcut` struct which will incapsulate keys and modifiers. [QShortcut](https://doc.qt.io/qt-6/qshortcut.html) is a good inspiration.
i think if you started by [searching the documentation](https://docs.rs/quick-xml/latest/quick_xml/se/struct.Serializer.html?search=indent), you got the result :) ```rust impl Response { pub fn to_xml(&self) -> String { quick_xml::se::to_string(self).unwrap() } pub fn to_xml_pretty(&self) ->...
Yes, probably `xml` prefix in elements and attributes should always be considered as part of a name, [because](https://www.w3.org/TR/xml-names11/#xmlReserved): - the `xml` prefix cannot be bound to any namespace other than...
I think, that the ability to specify custom format in addition to shortcuts also would be great. It also would be useful to have preview field with the current date/time.
I finished work on the base part of the entities support. In this PR new `Event::GeneralRef` is added together with new `BytesRef` struct which represents the any `&...;` reference, including...
Yes, you are correct. But that does not mean that he/she will needed to construct the complete text themselves. In the next PR I plan to rename `Reader` to the...
@dralley, what do you think about this?
@dralley, you can review this. Initially I thought not to merge it until I implement other changes (in the follow-up PRs) that reworks the parser to reduce amount of releases...