Enum pandoc_ast::Inline [] [src]

pub enum Inline {
    Str(String),
    Emph(Vec<Inline>),
    Strong(Vec<Inline>),
    Strikeout(Vec<Inline>),
    Superscript(Vec<Inline>),
    Subscript(Vec<Inline>),
    SmallCaps(Vec<Inline>),
    Quoted(QuoteTypeVec<Inline>),
    Cite(Vec<Citation>, Vec<Inline>),
    Code(AttrString),
    Space,
    SoftBreak,
    LineBreak,
    Math(MathTypeString),
    RawInline(FormatString),
    Link(AttrVec<Inline>, Target),
    Image(AttrVec<Inline>, Target),
    Note(Vec<Block>),
    Span(AttrVec<Inline>),
}

a single formatting item like bold, italic or hyperlink

Variants

Text

Emphasized text

Strongly emphasized text

Quoted text

Citation

Inline code (literal)

Inter-word space

Soft line break

Hard line break

TeX math (literal)

Hyperlink: text (list of inlines), target

Image: alt text (list of inlines), target

Footnote or endnote

Generic inline container with attributes

Trait Implementations

impl Debug for Inline
[src]

Formats the value using the given formatter.