20 |
#[allow(clippy::filter_next)]
|
21 |
let mut end = line_
|
71 |
/// Extract the chapter URL.
|
72 |
#[allow(clippy::filter_next)]
|
73 |
fn url_from_element(element: &kuchiki::ElementData) -> Result<Url> {
|
24 |
/// Extract series title from the content of `<div class="post-title">`.
|
25 |
#[allow(clippy::filter_next)]
|
26 |
fn title_from_html(html: &kuchiki::NodeRef) -> Result<String> {
|
40 |
/// Extract series URL from `<meta property="og:url" content="URL" />`
|
41 |
#[allow(clippy::filter_next)]
|
42 |
fn url_from_html(html: &kuchiki::NodeRef) -> Result<Url> {
|
51 |
/// Extract the chapter URL.
|
52 |
#[allow(clippy::filter_next)]
|
53 |
fn url_from_html(html: &kuchiki::NodeRef) -> Result<Url> {
|
27 |
/// Extract series title from `<meta property="og:title" content="TITLE" />`
|
28 |
#[allow(clippy::filter_next)]
|
29 |
fn title_from_html(html: &kuchiki::NodeRef) -> Result<String> {
|
41 |
/// Extract series URL from `<meta property="og:url" content="URL" />`
|
42 |
#[allow(clippy::filter_next)]
|
43 |
fn url_from_html(html: &kuchiki::NodeRef) -> Result<Url> {
|
48 |
/// Extract the chapter URL.
|
49 |
#[allow(clippy::filter_next)]
|
50 |
fn url_from_element(element: &kuchiki::ElementData) -> Result<Url> {
|
24 |
/// Extract series title from the content of `<div class="post-title">`.
|
25 |
#[allow(clippy::filter_next)]
|
26 |
fn title_from_html(html: &kuchiki::NodeRef) -> Result<String> {
|
40 |
/// Extract series URL from `<meta property="og:url" content="URL" />`
|
41 |
#[allow(clippy::filter_next)]
|
42 |
fn url_from_html(html: &kuchiki::NodeRef) -> Result<Url> {
|