Expand description
Module providing iterators over the hyperlinks found in the input text. Only HTML no other markup languages are parsed here.
Structs§
- Html
Inline Image - Iterator over the inline images in the HTML formatted
input
text. This struct holds the iterator’s state, as an advancing pointer into theinput
text. The iterator’snext()
method returns a tuple with 2 tuples inside:Some(((input_split)(html_image_element)))
. - Html
Link - Iterator over the inline hyperlinks in the HTML formatted
input
text. This struct holds the iterator’s state as an advancing pointer into theinput
text. The iterator’snext()
method returns a tuple with 2 tuples inside:Some(((input_split)(html_hyperlink_element)))
. - Html
Link Inline Image - The state of the iterator.