mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-10 14:16:41 +03:00
19 lines
376 B
Haskell
19 lines
376 B
Haskell
{-|
|
|
|
|
A ledger-compatible @print@ command.
|
|
|
|
-}
|
|
|
|
module PrintCommand
|
|
where
|
|
import Ledger
|
|
import Options
|
|
|
|
|
|
-- | Print ledger entries in standard format.
|
|
print' :: [Opt] -> [String] -> Ledger -> IO ()
|
|
print' opts args l = putStr $ showEntries opts args l
|
|
|
|
showEntries :: [Opt] -> [String] -> Ledger -> String
|
|
showEntries opts args l = concatMap showEntry $ entries $ rawledger l
|