Sha256: f9508a50c1c0315dbea7a6761251c22d0054c1cf0095099a0c3235fd29ffb6b6
Contents?: true
Size: 250 Bytes
Versions: 20
Compression:
Stored size: 250 Bytes
Contents
# # TEXTILE # TextFilters.define :textile, "Textile" do require 'redcloth' def render_text(text) RedCloth.new(text).to_html(:refs_markdown, :textile, :markdown) end def create_link(title, url) %Q|"#{title}":#{url}| end end
Version data entries
20 entries across 20 versions & 7 rubygems