0.1.0 • Published 10 years ago

grunt-anchors v0.1.0

Weekly downloads
2
License
-
Repository
github
Last release
10 years ago

grunt-anchors

Create clickable links by automatically generating anchor tags to your files directly inside an html file.

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-anchors --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-anchors');

The "anchors" task

Overview

In your project's Gruntfile, add a section named anchors to the data object passed into grunt.initConfig().

grunt.initConfig({
  anchors: {
    options: {
      expand: 'true',
      cwd: 'public'
    },
    targetHtml: ['path/to/index.html'],
    anchors: {
      htmlFiles: ['path/to/htmlFiles/*.html'],
      linkToAssets: ['path/to/assets/*']
    },
  },
});

Usage Examples

Default

If you pass an array through anchors then the grunt plugin will look for the default "begin:anchors" directive in targetHtml, and insert anchor tags to all of the selected files there.

Example:

grunt.initConfig({
  anchors: {
    options: {
      expand: 'true',
      cwd: 'public'
    },
    targetHtml: ['path/to/index.html'],
    anchors: ['path/to/html/*.html'],
  },
});
<!doctype html>
<html>
  <head>
  </head>
  <body>
    <!-- begin:anchors -->
    <!-- end:anchors -->
  </body>
</html>

becomes:

<!doctype html>
<html>
  <head>
  </head>
  <body>
    <!-- begin:anchors -->
    <a href="file1.html">file1</a>
    <a href="file2.html">file2</a>
    <!-- end:anchors -->
  </body>
</html>

Custom Directives

If you pass an object through anchors then each key in the object will be linked to custom directives. This is useful if you want to create different groups of links on a page.

Example:

grunt.initConfig({
  anchors: {
    options: {
      expand: 'true',
      cwd: 'public'
    },
    targetHtml: ['path/to/index.html'],
    anchors: {
      group1: ['path/to/group1/*'],
      group2: ['path/to/group2/*'],
      textFiles: ['path/to/text/*.txt']
      }
  },
});
<!doctype html>
<html>
  <head>
  </head>
  <body>
    <!-- begin:anchors -->
    <!-- end:anchors -->
  </body>
</html>

becomes:

<!doctype html>
<html>
  <head>
  </head>
  <body>
    <!-- begin:group1 -->
    <!-- end:group1 -->

    <h1>Text Files</h1>
    <!-- begin:textFiles -->
    <!-- end:textFiles -->
  </body>
</html>

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

(Nothing yet)