Assemble plugin for creating anchor tags from headings in generated html using Cheerio.js.
npm install grunt-assemble-anchors> Assemble plugin for creating anchor tags from headings in generated html using Cheerio.js.
``html`Glyphicons
Currently the plugin adds Bootstrap glyphicon classes. If you want to use different classes, find a bug, or have a feature request, please create an issue

Visit the anchors example repo.
In the command line, run:
`bash`
npm install grunt-assemble-anchors --save
Next, register the plugin with Assemble:
`js`
assemble: {
options = {
plugins: ['grunt-assemble-anchors', 'other/plugins/*']
}
};
Specify a custom template (Underscore/Lo-Dash) to use for anchor markup. This is the default template:
`js`
module.exports = [
'',
' ',
' ',
''
].join('\n');
To use a custom template just specify it in the options as follows:
`js``
options: {
plugins: ['grunt-assemble-anchors'],
anchors: {
template: './path/to/custom/template.js'
}
}
Visit the plugins docs for more info or for help getting started.
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Brian Woodward
Copyright © 2015 Brian Woodward
Released under the MIT license.
*
_This file was generated by verb-cli on September 24, 2015._