001package org.avaje.freemarker.layout; 002 003/** 004 * A filter that can be applied to the content after layout inheritance etc. 005 */ 006public interface ContentFilter { 007 008 /** 009 * Apply a filter to the content. 010 */ 011 String filter(String content); 012 013}