From 14e5102bdc912bcc61d3a993b389c113016af30a Mon Sep 17 00:00:00 2001 From: Jasper Van der Jeugt Date: Sat, 26 May 2012 23:34:01 +0200 Subject: Update README a bit --- README.markdown | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) (limited to 'README.markdown') diff --git a/README.markdown b/README.markdown index dc84b38..3d606d4 100644 --- a/README.markdown +++ b/README.markdown @@ -3,8 +3,15 @@ stylish-haskell [![Build Status](https://secure.travis-ci.org/jaspervdj/stylish-haskell-imports.png?branch=master)](http://travis-ci.org/jaspervdj/stylish-haskell-imports) -What ----- +Introduction +------------ + +A simple Haskell code prettifier + +Features +-------- + +### Imports Align and sort imports in Haskell source code @@ -14,24 +21,35 @@ Turns import qualified Data.Map as M import Control.Monad - import Data.Map (Map) + 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) + 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. + Status ------ -- cgit v1.2.3