# Grav Anchors Plugin `anchors` is a [Grav](http://github.com/getgrav/grav) plugin that provides automatic header anchors via the [anchorjs](http://bryanbraun.github.io/anchorjs) Vanilla JS plugin. # Installation ## GPM Installation (Preferred) The simplest way to install this plugin is via the [Grav Package Manager (GPM)](http://learn.getgrav.org/advanced/grav-gpm). From the root of your Grav install type: bin/gpm install anchors ## Manual Installation If for some reason you can't use GPM you can manually install this plugin. Download the zip version of this repository and unzip it under `/your/site/grav/user/plugins`. Then, rename the folder to `anchors`. You should now have all the plugin files under /your/site/grav/user/plugins/anchors # Usage To best understand how Anchors works, you should read through the original [project documentation](https://github.com/bryanbraun/anchorjs). ## Show Menu of Anchors If you want to use the generated links to also generate a menu from these anchors, just put the function below in the template file Twig: ``` {{ anchors(content, tag, terms) }} ``` The function accepts 3 parameters: * **content:** this parameter is the content of the page in which the function will search for all content and separate only the tags and their contents defined by the second parameter. E.g. `page.content` * **tag:** this parameter will be the string of the tag used to make the menu. E.g. `h2` * **terms:** this parameter is to exclude terms that you do not wish to include in the menu formation that is between the tag passed in the second parameter. The value passed is a string separated by comma to identify each term. Ex: `title 01, title 02` For example: ``` {{ anchors(page.content, 'h2') }} ``` When rendered the function will return a formed HTML with `