ownTextUTF8

Gets the text owned by this element only; does not get the combined text of all children.

Element.swift:1059
func ownTextUTF8() -> [UInt8]

For example, given HTML {@code

Hello there now!

}, {@code p.ownText()} returns {@code "Hello now!"}, whereas {@code p.text()} returns {@code "Hello there now!"}. Note that the text within the {@code b} element is not returned, as it is not a direct child of the {@code p} element.
<return>
<see>
<see>