Safe Haskell | Safe-Inferred |
---|---|
Language | GHC2021 |
Synopsis
- data RichText
- = RichTextPlain { }
- | RichTextBold { }
- | RichTextItalic { }
- | RichTextUnderline { }
- | RichTextStrikethrough { }
- | RichTextFixed { }
- | RichTextUrl { }
- | RichTextEmailAddress { }
- | RichTextSubscript { }
- | RichTextSuperscript { }
- | RichTextMarked { }
- | RichTextPhoneNumber { }
- | RichTextIcon { }
- | RichTextReference { }
- | RichTextAnchor { }
- | RichTextAnchorLink { }
- | RichTexts { }
Documentation
Describes a formatted text object
RichTextPlain | A plain text |
RichTextBold | A bold rich text |
RichTextItalic | An italicized rich text |
RichTextUnderline | An underlined rich text |
RichTextStrikethrough | A strikethrough rich text |
RichTextFixed | A fixed-width rich text |
RichTextUrl | A rich text URL link |
RichTextEmailAddress | A rich text email link |
RichTextSubscript | A subscript rich text |
RichTextSuperscript | A superscript rich text |
RichTextMarked | A marked rich text |
RichTextPhoneNumber | A rich text phone number |
RichTextIcon | A small image inside the text |
RichTextReference | A reference to a richTexts object on the same page |
RichTextAnchor | An anchor |
RichTextAnchorLink | A link to an anchor on the same page |
RichTexts | A concatenation of rich texts |