punch-sitemap-generator

0.0.5 • Public • Published

Punch Sitemap Generator

Plugin to create the sitemap.xml for your Punch sites.

How to Use

  • Install the package

    npm install punch-sitemap-generator

  • Open your Punch project's configurations (config.json) and add the following:

      "plugins": {
    
      	"generator_hooks": {
      		"sitemap_generator": "punch-sitemap-generator"
      	}
    
      }
    
  • Settings for the sitemap generator plugin must be specified under sitemap_generator in the config.json.

      "sitemap_generator": {
      	"url_root": "http://example.com"	
      }
    

You can set the following options for the sitemap_generator:

- `url_root` (**required**) - Root URL (host and protocol) of your published site.

- `changefreq` - Change frequency for all pages in the site (default `weekly`)

- `exclude_urls` - An array of full URLs to exclude from the sitemap (eg. `http://example.com/private/page.html`).

- `manual_entries` - List of manual URL entries to include in the sitemap. (eg. `[ { "loc": "http://example.com/custom", "priority": "0.6", "lastmod": "2012-01-01", "changefreq": "yearly" } ]`)

- `url_extension` - The extension to add to the urls except if already present or if there is a trailing slash (eg. `.html`)
  • sitemap.xml will be generated along with the rest of the files in your site when you run the command punch generate (punch g). It will be stored in the output directory, ready to be published.

License

Copyright (c) 2012 Lakshan Perera
Licensed under the MIT license.

/punch-sitemap-generator/

    Package Sidebar

    Install

    npm i punch-sitemap-generator

    Weekly Downloads

    7

    Version

    0.0.5

    License

    none

    Last publish

    Collaborators

    • laktek