Struct html2md::StructuredPrinter[][src]

pub struct StructuredPrinter {
    pub parent_chain: Vec<String>,
    pub siblings: HashMap<usize, Vec<String>>,
    pub data: String,
}
Expand description

Intermediate result of HTML -> Markdown conversion.

Holds context in the form of parent tags and siblings chain and resulting string of markup content with current position.

Fields

parent_chain: Vec<String>

Chain of parents leading to upmost tag

siblings: HashMap<usize, Vec<String>>

Siblings of currently processed tag in order where they’re appearing in html

data: String

resulting markdown document

Implementations

Inserts newline

Append string to the end of the printer

Insert string at specified position of printer, adjust position to the end of inserted string

Trait Implementations

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.