Package detail

htmlbars-comment-redactor

mikrostew21MIT0.0.4

ember addon for redacting html comments in handlebars templates

ember-addon

readme

Build Status

htmlbars-comment-redactor

This addon redacts the contents of any HTML comments in you handlebars templates.

So a template like this:

<div id="{{someVar}}">
  <!-- Here is a witty comment -->
</div>

renders as:

<div id="whatever">
  <!--[REDACTED]-->
</div>