Skip to content

Instantly share code, notes, and snippets.

@koseki
Created November 13, 2009 12:41
Show Gist options
  • Save koseki/233797 to your computer and use it in GitHub Desktop.
Save koseki/233797 to your computer and use it in GitHub Desktop.
SmallCage textile sample.
<html>
<body>
template: textile
--- |
h1. Textile Sample
* aaa
* bbb
* ccc
"SmallCage":http://github.com/bluemark/smallcage
module SmallCage
module RedClothHelper
require "redcloth"
def render_textile(str)
RedCloth.new(str).to_html
end
end
end
<%= header %>
<%= render_textile(body) %>
<%= footer %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment