Jade - Node Template Engine

Filters

Filters let you use other languages within a jade template. They take a block of plain text as an input.

:markdown
  # Markdown

  I often like including markdown documents.
script
  :coffee-script
    console.log 'This is coffee script'
<h1>Markdown</h1>
<p>I often like including markdown documents.</p>
<script>console.log('This is coffee script')</script>
Warning

Filters are compile time. This makes them fast but means they cannot support dynamic content.

Built in filters are not available in the browser as they would not all work. Providing you compile your templates server side, they will still work fine though.