Copyright | © 2019 Albert Krewinkel |
---|---|
License | MIT |
Maintainer | Albert Krewinkel <tarleb@zeitkraut.de> |
Stability | alpha |
Portability | portable |
Safe Haskell | Safe |
Language | Haskell2010 |
Jira markup types.
Documentation
Blocks of text.
Code Language [Parameter] Text | Code block with panel parameters |
BlockQuote [Block] | Block of quoted content |
Header Int [Inline] | Header with level and text |
List ListStyle [[Block]] | List |
NoFormat [Parameter] Text | Unformatted text |
Panel [Parameter] [Block] | Formatted panel |
Para [Inline] | Paragraph of text |
Table [Row] | Table |
Inline Jira markup elements.
Anchor Text | anchor for internal links |
Deleted [Inline] | deleted (struk-out) text |
Emph [Inline] | emphasized text |
Entity Text | named or numeric HTML entity |
Image URL | an image |
Inserted [Inline] | text marked as having been inserted |
Linebreak | hard linebreak |
Link [Inline] URL | hyperlink with alias |
Monospaced [Inline] | text rendered with monospaced font |
Str Text | simple, markup-less string |
Space | space between words |
Strong [Inline] | strongly emphasized text |
Subscript [Inline] | subscript text |
Superscript [Inline] | superscript text |
Style used for list items.
CircleBullets | List with round bullets |
SquareBullets | List with square bullets |
Enumeration | Enumeration, i.e., numbered items |
Table row, containing an arbitrary number of cells.
Table cell with block content
BodyCell [Block] | |
HeaderCell [Block] |
Programming language used for syntax highlighting.
Panel parameter
normalizeInlines :: [Inline] -> [Inline] Source #
Normalize a list of inlines, merging elements where possible.