Skip to content

Instantly share code, notes, and snippets.

@L8D
Created March 7, 2014 02:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save L8D/9404055 to your computer and use it in GitHub Desktop.
Save L8D/9404055 to your computer and use it in GitHub Desktop.
MTG Picture-sourcer for untap.in
parseLine = fmap tail . break (== ' ')
editLine = fmap f where
f s = s ++ "^http://mtgimage.com/card/" ++ s ++ ".jpg"
writeLine (x, y) = x ++ " " ++ y
main = interact $ unlines
. map ( writeLine
. editLine
. parseLine
)
. lines
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment