dxml icon indicating copy to clipboard operation
dxml copied to clipboard

An XML parsing library written in D.

Results 12 dxml issues
Sort by recently updated
recently updated
newest added

Using a struct instead of Tuple works around an issue with sorting at compile time (https://issues.dlang.org/show_bug.cgi?id=21429).

When using dmxl (current master version from git) in a project compiled via GDC version 10.3.0, I get the following compile time errors. Paths have been shortened. ``` source/parser.d:6285:35: error:...

There seems to be a problem with UTF-8 XML files containing a BOM marker: Parser failed with exception dxml.parser.XMLParsingException@/root/.dub/packages/dxml-0.4.3/dxml/source/dxml/parser.d(1925): [1:1]: Expected < The problem disappeared after removing the BOM (with...

It would be nice if we could access the attributes like: string id = entity.attributes!"id"; or entity.attributes["id"]; please forgive me for my ignorance in advance, if I missed an existing...

stripIndent(" foo\n\t\tbar") Results in "foo\nbar" `stripIndent` has apparently determined that the ident is "two whitespaces", and will consume such from the beginning of every line of the file - regardless...

Basic example from docs works fine: ``` auto xml = "\n" ~ " \n" ~ " \n" ~ " \n" ~ " \n" ~ " \n" ~ " \n" ~...

I need to get position of end (closing tag). But I can't figure out how to do it. Could anybody give me an example or explain how to do it?...

will you consider in the future to add namespace support for the xml tags?

enhancement

Is it possible to do with this library? Maybe you can provide examples that show memory-efficient usage of DOM and StAX parsers.

` ` Single space there. The DOMEntry's children are null. I tried providing a config that defined SplitEmpty as yes. No dice. These whitespaces are important in a schema I'm...

enhancement