org.fusesource.scalate

filter

package filter

Visibility
  1. Public
  2. All
Impl.
  1. Concrete
  2. Abstract

Type Members

  1. trait Filter extends AnyRef

    Filters transform content at a given URI.

  2. case class FilterRequest (filter: String, content: Any) extends Product

    Represents a request to filter content.

  3. case class Pipeline (filters: List[Filter]) extends Filter with Product

    Applies a number of filters in order

Value Members

  1. object CdataFilter extends Filter

    Surrounds the filtered text with CDATA tags.

  2. object CoffeeScriptFilter extends Filter with Log

    Surrounds the filtered text with <script> and CDATA tags.

  3. object CssFilter extends Filter

    Surrounds the filtered text with <style> and CDATA tags.

  4. object EscapedFilter extends Filter

    Escapes any XML/XHTML special characters in the content.

  5. object JavascriptFilter extends Filter

    Surrounds the filtered text with <script> and CDATA tags.

  6. object PlainFilter extends Filter

    A filter that simply returns the given String without any processing.

  7. object ScalaMarkdownFilter extends Filter with TemplateEngineAddOn

    Renders markdown syntax.