0.1.2 • Published 10 years ago

grunt-jquerymobiletransform v0.1.2

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

jQuery Transform

grunt-jquerymobiletransform is a grunt task for transforming HTML files with jQuerymobile

Installation

npm install grunt-jquerymobiletransform

Use

Simple Case

grunt.initConfig({
  jquerymobiletransform: {
    files: ['**/*.html'], // All HTML files
    transform: function($) {
      // For styling bullet separate from text
      $('.post li').wrapInner('<span />');
    }
  }
});

grunt.loadNpmTasks('grunt-jquerymobiletransform');
0.1.2

10 years ago

0.1.1

10 years ago