pub type InitialLetter = GenericInitialLetter<Number, Integer>;
Expand description

A specified type for the initial-letter property.

Aliased Type§

struct InitialLetter {
    pub size: Number,
    pub sink: Integer,
}

Fields§

§size: Number

The size, >=1, or 0 if normal.

§sink: Integer

The sink, >=1, if specified, 0 otherwise.

Trait Implementations§

source§

impl Parse for InitialLetter

source§

fn parse<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't> ) -> Result<Self, ParseError<'i>>

Parse a value of this type. Read more