mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
Merge pull request #300 from bhollis/url
A url helper that strips directory indexes
This commit is contained in:
commit
38d1059be2
1 changed files with 7 additions and 0 deletions
|
@ -182,6 +182,13 @@ module Middleman::Sitemap
|
|||
# TODO: Seems like .html shouldn't be hardcoded here
|
||||
end
|
||||
|
||||
# A path without the directory index - so foo/index.html becomes
|
||||
# just foo. Best for linking.
|
||||
# @return [String]
|
||||
def url
|
||||
'/' + destination_path.sub(/#{Regexp.escape(app.index_file)}$/, '')
|
||||
end
|
||||
|
||||
# Get the relative path from the source
|
||||
# @return [String]
|
||||
def relative_path
|
||||
|
|
Loading…
Reference in a new issue