Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 365 Bytes

README.md

File metadata and controls

25 lines (15 loc) · 365 Bytes

rapidxml

A XML Parsing library for D Programming Language. Ported from C++ rapidxml.

Example

import rapidxml;

import stdio;

void main()
{
    auto doc = new xml_document;

    string xml = "<single-element/>";

    doc.parse(xml);

    auto node = doc.first_node();

    writeln(node.m_name);

    doc.validate();
}