diff options
author | Simonas Kazlauskas <git@kazlauskas.me> | 2013-04-03 15:26:51 +0300 |
---|---|---|
committer | Simonas Kazlauskas <git@kazlauskas.me> | 2013-04-04 13:29:57 +0300 |
commit | 63a3000f9cab6446ce40cf6d9671123baee6c22b (patch) | |
tree | 9c33af1a8571074ba662a9d0e6c6f3ed8a24b585 /src/Hakyll/Web | |
parent | 5f6035b8e95c0fa5747d8b46b15f6e6c75651abd (diff) | |
download | hakyll-63a3000f9cab6446ce40cf6d9671123baee6c22b.tar.gz |
Account for scheme-relative URLs
http://url.spec.whatwg.org/#concept-scheme-relative-url
Diffstat (limited to 'src/Hakyll/Web')
-rw-r--r-- | src/Hakyll/Web/Html.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Hakyll/Web/Html.hs b/src/Hakyll/Web/Html.hs index 4053003..37e517d 100644 --- a/src/Hakyll/Web/Html.hs +++ b/src/Hakyll/Web/Html.hs @@ -120,7 +120,7 @@ toSiteRoot = emptyException . joinPath . map parent -------------------------------------------------------------------------------- -- | Check if an URL links to an external HTTP(S) source isExternal :: String -> Bool -isExternal url = any (flip isPrefixOf url) ["http://", "https://"] +isExternal url = any (flip isPrefixOf url) ["http://", "https://", "//"] -------------------------------------------------------------------------------- |