type Content interface {
Text(separator *string) (string, error) // Extracts the full raw text, or returns null if no text content can be found. Iterator() iterator.Iterator// Creates a new iterator for this content. Elements() ([]element.Element, error) // Returns all the elements as a list.}