Html

The html struct is used to differentiate between regular text nodes and html in certain functions

Easiest way to construct it is like this: auto html = Html("<p>hello</p>");

struct Html {}

Members

Variables

source
string source;

This string holds the actual html. Use it to retrieve the contents.

Meta