The helper function is present in the source code, but not documented. This commit adds the function and a single use case to the helpers section of the readme.
Helpers are special functions that manipulate content on the page. In addition to [Handlebars's built-in helpers](http://handlebarsjs.com/builtin_helpers.html), Panini includes a few custom helpers and you can add your own.
+### ifequal
+Displays the HTML inside the helper if the two values are equal.
+```handlebars
+{{#ifequal foo bar}}
+ <p>foo and bar are equal</p>
+{{/ifequal}}
+```
+
### ifpage
Displays the HTML inside the helper only on specific pages. In the below example, the HTML inside the helper will only show up on the `index.html` page.