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 |
- data Highlight :: *
- data HighlightedRope = HighlightedRope !(IntervalMap Delta Highlight) !Rope
- class HasHighlightedRope c where
- withHighlight :: Highlight -> Doc -> Doc
- data HighlightDoc = HighlightDoc String String HighlightedRope
- class HasHighlightDoc c where
- doc :: String -> HighlightedRope -> HighlightDoc
Documentation
Tags used by the TokenParsing
highlight
combinator.
data HighlightedRope Source #
A HighlightedRope
is a Rope
with an associated IntervalMap
full of highlighted regions.
class HasHighlightedRope c where Source #
highlightedRope :: Lens' c HighlightedRope Source #
ropeContent :: Lens' c Rope Source #
ropeHighlights :: Lens' c (IntervalMap Delta Highlight) Source #
data HighlightDoc Source #
Represents a source file like an HsColour rendered document
class HasHighlightDoc c where Source #
highlightDoc :: Lens' c HighlightDoc Source #
docContent :: Lens' c HighlightedRope Source #
doc :: String -> HighlightedRope -> HighlightDoc Source #
Generate an HTML document from a title and a HighlightedRope
.