/// Typesetting style configuration for documents. /// /// This contains settings that affect how the document abstract /// syntax tree is modified during typesetting. #[derive(Clone, Debug, Default)] pub struct Style { /// Should hyperlinks in the document be rendered as footnotes or endnotes? /// /// A link is like the HTML `` element. The choice of footnote /// versus endnote is made by the typesetting backend. HTML uses /// endnotes, PDF uses footnotes. pub links_as_notes: bool, }