cargo-insert-docs 1.6.0

Inserts feature docs into crate docs, and crate docs into README.
//! Non-lazy continuation.
//!
//! This is a tiny helper that [flow][] constructs can use to make sure that
//! the following line is not lazy.
//! For example, [html (flow)][html_flow] and ([raw (flow)][raw_flow],
//! [indented][code_indented]), stop when the next line is lazy.
//!
//! [flow]: crate::markdown_rs::construct::flow
//! [raw_flow]: crate::markdown_rs::construct::raw_flow
//! [code_indented]: crate::markdown_rs::construct::code_indented
//! [html_flow]: crate::markdown_rs::construct::html_flow

use crate::markdown_rs::event::Name;
use crate::markdown_rs::state::{Name as StateName, State};
use crate::markdown_rs::tokenizer::Tokenizer;

/// At eol, before continuation.
///
/// ```markdown
/// > | * ```js
///            ^
///   | b
/// ```
pub fn start(tokenizer: &mut Tokenizer) -> State {
    match tokenizer.current {
        Some(b'\n') => {
            tokenizer.enter(Name::LineEnding);
            tokenizer.consume();
            tokenizer.exit(Name::LineEnding);
            State::Next(StateName::NonLazyContinuationAfter)
        }
        _ => State::Nok,
    }
}

/// A continuation.
///
/// ```markdown
///   | * ```js
/// > | b
///     ^
/// ```
pub fn after(tokenizer: &mut Tokenizer) -> State {
    if tokenizer.lazy { State::Nok } else { State::Ok }
}