011f7aeaec
Ensure that the export.hs script refers to the .org file.
11 lines
254 B
Haskell
11 lines
254 B
Haskell
module Main where
|
|
|
|
import Data.Function ((&))
|
|
import qualified Data.List as L
|
|
|
|
-- | Run this to export the grocery list.
|
|
main :: IO ()
|
|
main = do
|
|
x <- readFile "./list.org"
|
|
x & lines & filter (not . L.isPrefixOf "- 0x") & unlines & putStrLn
|
|
pure ()
|