summaryrefslogtreecommitdiffhomepage
path: root/README.markdown
diff options
context:
space:
mode:
authorJasper Van der Jeugt <m@jaspervdj.be>2012-05-26 23:35:56 +0200
committerJasper Van der Jeugt <m@jaspervdj.be>2012-05-26 23:35:56 +0200
commit1055be2edcc6bbfb555addf3bb01a448c41a744c (patch)
treeb4f11310124b219ac11c00a6105101cb78be38b0 /README.markdown
parent14e5102bdc912bcc61d3a993b389c113016af30a (diff)
downloadstylish-haskell-1055be2edcc6bbfb555addf3bb01a448c41a744c.tar.gz
Smaller README
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown41
1 files changed, 3 insertions, 38 deletions
diff --git a/README.markdown b/README.markdown
index 3d606d4..b982f1e 100644
--- a/README.markdown
+++ b/README.markdown
@@ -11,44 +11,9 @@ A simple Haskell code prettifier
Features
--------
-### Imports
-
-Align and sort imports in Haskell source code
-
-Turns
-
- module Herp where
-
- import qualified Data.Map as M
- import Control.Monad
- import Data.Map (lookup, (!), insert, Map)
-
- import Herp.Derp.Internals
-
- herp = putStrLn "import Hello world"
-
- module Herp where
-
-
-into
-
- module Herp where
-
- import Control.Monad
- import Data.Map (Map, insert, lookup, (!))
- import qualified Data.Map as M
-
- import Herp.Derp.Internals
-
- herp = putStrLn "import Hello world"
-
-### {-# LANGUAGE #-} pragmas
-
-(TODO)
-
-### Trailing whitespace
-
-Removal of trailing whitespace.
+- Align and sort `import` statements
+- Groups and wraps `{-# LANGUAGE #-}` pragmas (TODO)
+- Removes trailing whitespace
Status
------