diff options
Diffstat (limited to 'bbcode/src/Text/BBCode.hs')
| -rw-r--r-- | bbcode/src/Text/BBCode.hs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bbcode/src/Text/BBCode.hs b/bbcode/src/Text/BBCode.hs index 455decb..7a328a8 100644 --- a/bbcode/src/Text/BBCode.hs +++ b/bbcode/src/Text/BBCode.hs | |||
| @@ -1,4 +1,14 @@ | |||
| 1 | {-# LANGUAGE OverloadedStrings #-} | ||
| 2 | |||
| 1 | module Text.BBCode | 3 | module Text.BBCode |
| 2 | ( | 4 | ( |
| 3 | ) where | 5 | ) where |
| 4 | 6 | ||
| 7 | import Data.Attoparsec.Text | ||
| 8 | |||
| 9 | import Data.Text (Text) | ||
| 10 | import qualified Data.Text as T (singleton, head, tail) | ||
| 11 | |||
| 12 | import Control.Applicative | ||
| 13 | |||
| 14 | import Text.BBCode.Lexer (BBToken(..), token) | ||
