metalsmith slug
Add a slug
property to the metadata for targeted files in your
Metalsmith, based on a particular property.
Useful for generating links to pages based on, say, their title
.
Installation
npm install metalsmith-slug --save
Usage
If you're not familiar with Metalsmith, check it out. It's a versatile file processor that can be used for static site generation, project scaffolding and more. It can be interacted with via a CLI or JavaScript API.
Metalsmith CLI
Add metalsmith-slug
to your metalsmith.json
.
Metalsmith JavaScript API
Add metalsmith-slug
to your project and .use()
it.
var slug = ; metalsmith;
Options
patterns Array
: Glob patterns of files to match. Uses
minimatch. Default: []
.
metalsmith;
property String
: Property to generate the slug from. Default: title
.
metalsmith;
renameFiles Boolean
: When set to true
, will rename the files passed to
metalsmith-slug to the file's new slug property. Default: false
.
metalsmith;
slug options: You can additionally use any of the options available for node-slug.
// This are the defaults for node-slug 'pretty' modemetalsmith;
Alternatively you can change the default node-slug mode:
metalsmith.use(slug({
mode: 'rfc3986'
}));
Manual override
Also, it's possible to override the slug
property in a single file.
If you define a slug
in the front matter, the plugin won't replace it with a new one.
However, it will apply the same slug options, if any.
---title: Somethingslug: Something-Else---contents...
metalsmith; // => {slug: 'Something-Else', ...}metalsmith; // => {slug: 'something-else', ...}
Tests
npm test
to run the tests.
License
The MIT License (MIT)
Copyright (c) 2014 Nikhil Sonnad
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.