package com.github.gist.ammmze.handlebars.helpers; import com.github.jknack.handlebars.Helper; import com.github.jknack.handlebars.Options; import java.io.IOException; public class StripTagsHelper implements Helper { @Override public Object apply(String context, Options options) throws IOException { return context == null ? null : context.replaceAll("<[^>]*>", ""); } }