Sha256: 6e3380811bddf7d98d68fb257d5e914e5b23734649fe2c1c340e02c1ed9e1806
Contents?: true
Size: 1.74 KB
Versions: 8
Compression:
Stored size: 1.74 KB
Contents
# #-- # # $Id: textile.rb 531 2006-11-17 17:56:14Z thomas $ # # webgen: template based static website generator # Copyright (C) 2004 Thomas Leitner # # This program is free software; you can redistribute it and/or modify it under the terms of the GNU # General Public License as published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along with this program; if not, # write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # #++ # load_optional_part( 'content-converter-textile', :needed_gems => ['redcloth'], :error_msg => "Textile not available as content format as RedCloth could not be loaded", :info => "Textile can be used as content format" ) do require 'redcloth' load_plugin 'webgen/plugins/contentconverters/default' module ContentConverters # Handles content in Textile format using RedCloth. class TextileConverter < DefaultContentConverter infos( :name => 'ContentConverter/Textile', :author => Webgen::AUTHOR, :summary => "Handles content in Textile format using RedCloth" ) register_handler 'textile' def call( content ) RedCloth.new( content ).to_html rescue Exception => e log(:error) { "Error converting Textile text to HTML: #{e.message}" } content end end end end
Version data entries
8 entries across 8 versions & 1 rubygems