| Copyright | (C) 2011-2015 Edward Kmett |
|---|---|
| License | BSD-style (see the file LICENSE) |
| Maintainer | Edward Kmett <ekmett@gmail.com> |
| Stability | experimental |
| Portability | non-portable |
| Safe Haskell | None |
| Language | Haskell2010 |
Text.Trifecta.Highlight
Description
Synopsis
- data Highlight
- data HighlightedRope = HighlightedRope !(IntervalMap Delta Highlight) !Rope
- class HasHighlightedRope c where
- highlightedRope :: Lens' c HighlightedRope
- ropeContent :: Lens' c Rope
- ropeHighlights :: Lens' c (IntervalMap Delta Highlight)
- withHighlight :: Highlight -> Doc -> Doc
- data HighlightDoc = HighlightDoc String String HighlightedRope
- class HasHighlightDoc c where
- highlightDoc :: Lens' c HighlightDoc
- docContent :: Lens' c HighlightedRope
- docCss :: Lens' c String
- docTitle :: Lens' c String
- doc :: String -> HighlightedRope -> HighlightDoc
Documentation
Tags used by the TokenParsing highlight combinator.
Instances
| Bounded Highlight | |
| Enum Highlight | |
Defined in Text.Parser.Token.Highlight Methods succ :: Highlight -> Highlight # pred :: Highlight -> Highlight # fromEnum :: Highlight -> Int # enumFrom :: Highlight -> [Highlight] # enumFromThen :: Highlight -> Highlight -> [Highlight] # enumFromTo :: Highlight -> Highlight -> [Highlight] # enumFromThenTo :: Highlight -> Highlight -> Highlight -> [Highlight] # | |
| Eq Highlight | |
| Ord Highlight | |
| Read Highlight | |
| Show Highlight | |
data HighlightedRope #
A HighlightedRope is a Rope with an associated IntervalMap full of highlighted regions.
Constructors
| HighlightedRope !(IntervalMap Delta Highlight) !Rope |
Instances
| Semigroup HighlightedRope # | |
Defined in Text.Trifecta.Highlight Methods (<>) :: HighlightedRope -> HighlightedRope -> HighlightedRope # sconcat :: NonEmpty HighlightedRope -> HighlightedRope # stimes :: Integral b => b -> HighlightedRope -> HighlightedRope # | |
| Monoid HighlightedRope # | |
Defined in Text.Trifecta.Highlight Methods mappend :: HighlightedRope -> HighlightedRope -> HighlightedRope # mconcat :: [HighlightedRope] -> HighlightedRope # | |
| Pretty HighlightedRope # | |
Defined in Text.Trifecta.Highlight | |
| ToMarkup HighlightedRope # | |
Defined in Text.Trifecta.Highlight | |
| HasDelta HighlightedRope # | |
Defined in Text.Trifecta.Highlight Methods delta :: HighlightedRope -> Delta # | |
| HasBytes HighlightedRope # | |
Defined in Text.Trifecta.Highlight Methods bytes :: HighlightedRope -> Int64 # | |
| HasHighlightedRope HighlightedRope # | |
Defined in Text.Trifecta.Highlight | |
class HasHighlightedRope c where #
Minimal complete definition
Methods
highlightedRope :: Lens' c HighlightedRope #
ropeContent :: Lens' c Rope #
ropeHighlights :: Lens' c (IntervalMap Delta Highlight) #
Instances
| HasHighlightedRope HighlightedRope # | |
Defined in Text.Trifecta.Highlight | |
data HighlightDoc #
Represents a source file like an HsColour rendered document
Constructors
| HighlightDoc String String HighlightedRope |
Instances
| ToMarkup HighlightDoc # | |
Defined in Text.Trifecta.Highlight | |
| HasHighlightDoc HighlightDoc # | |
Defined in Text.Trifecta.Highlight | |
class HasHighlightDoc c where #
Minimal complete definition
Instances
| HasHighlightDoc HighlightDoc # | |
Defined in Text.Trifecta.Highlight | |
doc :: String -> HighlightedRope -> HighlightDoc #
Generate an HTML document from a title and a HighlightedRope.