Book Image

Grunt Cookbook

By : Jurie-Jan Botha
Book Image

Grunt Cookbook

By: Jurie-Jan Botha

Overview of this book

<p>A web application can quickly turn into a complex orchestration of many smaller components, each one requiring its own bit of maintenance. Grunt allows you to automate all the repetitive tasks required to get everything working together by using JavaScript, the most popular programming language.</p> <p>Grunt Cookbook offers a host of easy-to-follow recipes for automating repetitive tasks in your web application's development, management, and deployment processes. This book will introduce you to methods that can be used to automate basic processes and your favorite tools. By following the recipes, you will soon be comfortable using Grunt to perform a wide array of advanced tasks in a range of different scenarios.</p>
Table of Contents (17 chapters)
Grunt Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Altering Handlebars templates before compilation


Although not very common, there might come a time that you would want to alter the contents of a template before compiling or rendering it. This is most commonly required when you would like to remove excessive whitespace from templates, or if you'd like to remove or replace certain parts of a template you have no control over.

In this recipe, we'll make use of the contrib-handlebars (0.8.0) plugin and the processContent option provided by its handlebars task to remove whitespace from our templates before compiling them.

Getting ready

In this example, we'll work with the basic project structure we created in the Compiling Handlebars templates recipe of this chapter. Be sure to refer to it if you are not yet familiar with its contents.

How to do it...

The following steps take us through altering our configuration so that excessive whitespace is removed from our templates before compiling them.

  1. First, we can provide an empty function to the processContent...