soupy 0.10.0

A library for querying tree-based formats, similar to BeautifulSoup.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(feature = "html-strict")]
mod entities;
#[cfg(feature = "html-lenient")]
mod lenient;
#[cfg(any(feature = "html-lenient", feature = "html-strict"))]
mod node;
#[cfg(feature = "html-strict")]
mod strict;

#[cfg(feature = "html-lenient")]
pub use lenient::LenientHTMLParser;
#[cfg(any(feature = "html-lenient", feature = "html-strict"))]
pub use node::HTMLNode;
#[cfg(feature = "html-strict")]
pub use strict::StrictHTMLParser;