Skip to content

Commit

Permalink
Do not export internal stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
sol committed Oct 12, 2012
1 parent dc00425 commit 327033f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ghci
Original file line number Diff line number Diff line change
@@ -1 +1 @@
:set -isrc -itest
:set -isrc -itest -DTEST
3 changes: 2 additions & 1 deletion markdown-unlit.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,13 @@ test-suite spec
exitcode-stdio-1.0
ghc-options:
-Wall -Werror
cpp-options:
-DTEST
hs-source-dirs:
src, test
main-is:
Spec.hs
build-depends:
base
, markdown-unlit
, stringbuilder
, hspec >= 1.3
10 changes: 9 additions & 1 deletion src/Text/Markdown/Unlit.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
module Text.Markdown.Unlit where
{-# LANGUAGE CPP #-}
module Text.Markdown.Unlit (
unlit
, CodeBlock (..)
, parse
#ifdef TEST
, parseClasses
#endif
) where

import Control.Applicative
import Data.List
Expand Down

0 comments on commit 327033f

Please sign in to comment.