class Middleman::Sitemap::Store

Public Instance Methods

find_resource_by_destination_path(request_path) click to toggle source
# File lib/middleman/extensions/tumblargh.rb, line 32
def find_resource_by_destination_path(request_path)
  request_path = "/index.html" if request_path.match(/^\/post\//)
  orig_find_resource_by_destination_path(request_path)
end
orig_find_resource_by_destination_path(request_path)