Introducing slidedown

Why?

Write slides in Markdown

# Slide title

!SLIDE

## A good point

!SLIDE

> This is the coolest thing ever.

Syntax Highlighting

  @@@ ruby
      # A rack app
      proc {
        [200, { 'Location' => '/' },
          "You are being redirected to /"
        ]
      }
  @@@

Becomes...

# A rack app
proc {
  [200, { 'Location' => '/' },
    "You are being redirected to /"
  ]
}
  @@@ js
      // Some JavaScript
      function() {
        if (1 == 2) {
          return "This is silly."
        }
      }
  @@@

Becomes...

// Some JavaScript
function() {
  if (1 == 2) {
    return "This is silly."
  }
}

A CSS test...

#fizz {
  color: #ffa;
}

.foo {
  text-decoration: underline;
}