middleman-sitemap
middleman-sitemap copied to clipboard
A Middleman extension to create a sitemap for your Middleman site
Using middleman 4.1.1 When running `bundle exec middleman build` > middleman-sitemap-0.0.13/lib/middleman-sitemap/extension.rb:94:in block in encode: undefined method app.escape_html Verified that escape_html is available to middleman with simple test template ``` ```
- Middleman 4+ support - Fix undefined method `app.escape_html' in Middleman v4.1+, solves #8 - Fix undefined method `find_all` for `Middleman::Sitemap::ResourceListContainer` in Middleman v5.0.0.rc2+ @statonjr
Hiya Pretty confused when I run tests against this code, it fails on Middleman Already built? Are there some steps missing in getting the testing running locally instead of on...
When sitemap is build, each URL misses the trailing slash, _i.e_ `/`. That leads to 301 redirects to URL with trailing slash, which is not optimal for SEO. Could you...
Not all pages should be included in the sitemap. E.g. the thank-you page For this reason it would be great having a tag in the YAML that would be recognised...
Hi, I have the following on my `config.rb`: ``` ruby data.companies.each do |name, company| proxy "/companies/#{name}/index.html", "/company_page.html", locals: { company: company } end ``` Whenever I run `middleman build`, when...