Created
March 21, 2013 10:00
-
-
Save samueltardieu/5211927 to your computer and use it in GitHub Desktop.
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
shortenUrl :: String -> String | |
shortenUrl url = case splitFileName url of | |
(dir, "index.html") | isLocal dir -> dir | |
_ -> url | |
where isLocal uri = isPrefixOf rootUrl uri || not (isInfixOf "://" uri) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
rootUrl
is my own site URL, with the "http://" prefix.