Created
March 7, 2014 02:38
-
-
Save L8D/9404055 to your computer and use it in GitHub Desktop.
MTG Picture-sourcer for untap.in
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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