htmld 0.2.19

Lightweight and forgiving HTML parser


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

htmld Build Status

Lightweight and forgiving HTML parser and DOM.

The parser was inspired by htmlparse2 by fb55

HTML Entity parsing and decoding are both optional. The current parser interface is based on callbacks.

Creating the DOM from source:

auto doc = createDocument(`<html><body>&nbsp;</body></html>`);
writeln(doc.root.outerHTML);

Creating/mutating DOM manually:

auto doc = createDocument();
doc.root.html = `<body>&nbsp;</body>`;

auto container = doc.createElement("div", doc.root.firstChild);
container.attr("class", "container");
container.html = "<p>moo!</p>";

auto app = appender!string;
doc.root.outerHTML(app);

QuerySelector interface:

if (auto p = doc.querySelector("p:nth-of-type(2)"))
    p.text = "mooo";

foreach(p; doc.querySelectorAll("p")) {
    p.text = "mooo";
}

Example parser usage:

auto builder = DOMBuilder();
parseHTML(`<html><body>&nbsp;</body></html>`, builder);

Example handler:

struct DOMBuilder {
    void onText(const(char)[] data) {}
    void onSelfClosing() {}
    void onOpenStart(const(char)[] data) {}
    void onOpenEnd(const(char)[] data) {}
    void onClose(const(char)[] data) {}
    void onAttrName(const(char)[] data) {}
    void onAttrEnd() {}
    void onAttrValue(const(char)[] data) {}
    void onComment(const(char)[] data) {}
    void onDeclaration(const(char)[] data) {}
    void onProcessingInstruction(const(char)[] data) {}
    void onCDATA(const(char)[] data) {}

    // the following are required if ParseEntities is set
    void onNamedEntity(const(char)[] data) {}
    void onNumericEntity(const(char)[] data) {}
    void onHexEntity(const(char)[] data) {}
    
    // required only if DecodeEntities is set
    void onEntity(const(char)[] data, const(char)[] decoded) {}
    
    void onDocumentEnd() {}
}

todo

  • implement range-based interface for parser
Authors:
  • Márcio Martins
Dependencies:
none
Versions:
0.3.7 2019-Mar-14
0.3.6 2019-Jan-18
0.3.5 2019-Jan-17
0.3.4 2018-Nov-29
0.3.3 2018-Nov-08
Show all 31 versions
Download Stats:
  • 0 downloads today

  • 1 downloads this week

  • 5 downloads this month

  • 4296 downloads total

Score:
1.7
Short URL:
htmld.dub.pm