auto getElementsByTag(string html, string tag)
This function searches all elements from HTML page with a specific tag.
auto getElementsByTagAndAttribute(
string html,
string tag,
string attrName = "",
string attrValue = ""
)
This function searches all elements by a specific tag and an attribute.
Returns
Page element info (tag name and possible attributes) and content of the element as tuple with two elements.
ref string replaceSpecialMnemonics(return ref string HTMLText)
Search and replace special characters in HTML for normal view.