htmld 0.2.18
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
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> </body></html>`);
writeln(doc.root.outerHTML);
Creating/mutating DOM manually:
auto doc = createDocument();
doc.root.html = `<body> </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> </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
- Registered by Márcio Martins
- 0.2.18 released 7 years ago
- eBookingServices/htmld
- MIT License
- Copyright © 2015, Marcio Martins
- Authors:
- 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 - Download Stats:
-
-
0 downloads today
-
21 downloads this week
-
30 downloads this month
-
4539 downloads total
-
- Score:
- 2.3
- Short URL:
- htmld.dub.pm