Skip to content

Latest commit

 

History

History
68 lines (41 loc) · 1.23 KB

readme.md

File metadata and controls

68 lines (41 loc) · 1.23 KB

hanchor

Build Status David David

Autogenerate links to header tags from header text

Installation

$ npm install --save hanchor

Usage

The quickest way to begin using hanchor is to include it in the <head> of your HTML document.

<head>
  <script src="https://unpkg.com/hanchor@1.0.7" />
</head>
<html>
  ...
  <script type="text/javascript">
    (function() {
      hanchor.init('article');
    })();
  </script>
  ...
</html>

API

hanchor(scope, [options])

scope

Type: stringor object, Default: 'body'

The DOM element that header linking is scoped to.

options.content

Type: string, Default: '#'

The content of the header tag link.

options.className

Type: string or false, Default: false

Class to be assigned to the header tag links.

options.position

Type: string, Default: 'beforeend'

Position the link 'beforebegin', 'afterbegin', 'beforeend' or 'afterend' in reference to the the header tag.

License

MIT © Rodney Dennis