Function tl::parse[][src]

pub fn parse(input: &str, options: ParserOptions) -> VDom<'_>
Expand description

Parses the given input string

This is the “entry point” and function you will call to parse HTML. The input string must be kept alive, and must outlive VDom. If you need an “owned” version that takes an input string and can be kept around forever, consider using parse_owned().