| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 | name: Anchorsversion: 1.5.1description: "This plugin provides automatic header anchors via the [anchorjs](http://bryanbraun.github.io/anchorjs) jQuery plugin."icon: anchorauthor:  name: Team Grav  email: [email protected]  url: http://getgrav.orghomepage: https://github.com/getgrav/grav-plugin-anchorsdemo: http://learn.getgrav.orgkeywords: anchor, header, plugin, codebugs: https://github.com/getgrav/grav-plugin-anchors/issueslicense: MITform:  validation: strict  fields:    enabled:      type: toggle      label: PLUGIN_ADMIN.PLUGIN_STATUS      highlight: 1      default: 0      options:        1: PLUGIN_ADMIN.ENABLED        0: PLUGIN_ADMIN.DISABLED      validate:        type: bool    active:      type: toggle      label: Active      highlight: 1      default: 1      options:        1: PLUGIN_ADMIN.ENABLED        0: PLUGIN_ADMIN.DISABLED      validate:        type: bool      help: Activate for all pages. If disabled then you must activate per-page    selectors:      type: text      label: Selectors      size: large      default: 'h1,h2,h3,h4'      placeholder: "Anchor Selectors"      help: Comma separated list of header selectors to activate on    placement:      type: select      label: Placement      classes: fancy      help: "Either `left` or `right`"      default: 'right'      options:        'left': 'left'        'right': 'right'    visible:      type: select      label: Visible      classes: fancy      help: "Hover activates on `hover` else will always display"      default: 'hover'      options:        'hover': 'hover'        'always': 'always'    icon:      type: text      label: Icon      size: medium      default: ''      help: "Replace the default link icon with the character(s) provided, e.g. #, ¶, ❡ or §"    class:      type: text      label: Class      size: medium      default: ''      help: "Adds the provided class to the anchor html"    truncate:      type: text      size: x-small      label: Truncate      help: "Truncates the generated ID to the specified character length"      default: 64      validate:        type: number        min: 0
 |