Module parse_hyperlinks_extras::html_iterator[][src]

Expand description

Module providing iterators over the hyperlinks found in the input text. Only HTML no other markup languages are parsed here.

Structs

Iterator over the inline hyperlinks in the HTML formatted input text. This struct holds the iterator’s state as an advancing pointer into the input text. The iterator’s next() method returns a tuple with 2 tuples inside: Some(((input_split)(html_hyperlink_element))).

Iterator over the hyperlinks and inline images in the HTML formatted input text. This struct holds the iterator’s state, as an advancing pointer into the input text. The iterator’s next() method returns a tuple with another tuples inside: Some(((input_split), destination)).

Iterator over the inline images in the HTML formatted input text. This struct holds the iterator’s state, as an advancing pointer into the input text. The iterator’s next() method returns a tuple with 2 tuples inside: Some(((input_split)(html_image_element))).