resolves #1653 don't rewrite paths that start with //

This commit is contained in:
Dan Allen 2015-10-26 00:35:40 -06:00
parent 3cd84eb4d1
commit 4995bd23d7
3 changed files with 7 additions and 3 deletions

View file

@ -333,7 +333,7 @@ module Middleman
asset_path = $2
uri = ::Addressable::URI.parse(asset_path)
if uri.relative? && result = yield(asset_path)
if uri.relative? && uri.host.nil? && (result = yield(asset_path))
"#{opening_character}#{result}"
else
match