ROFISH / redcloth

RedCloth is a Ruby library for converting Textile into HTML. This fork is the customizations for use with the Fangamer Forums. It includes BBCode support and ability to disable parsing certain elements.
http://redcloth.org
Other
6 stars 0 forks source link

h1. BBRedCloth - BBCode/Textile parser for Ruby

Homepage:: http://redcloth.org Authors:: Jason Garber Ryan Alyea Copyright:: (c) 2008 Jason Garber (c) 2009 Ryan Alyea License:: MIT

(See http://redcloth.org/textile/ for a Textile reference.)

h2. Latest Updates

Holy crap, it's 2021?

h2. BBRedCloth

BBRedCloth is a Ruby library for converting Textile into HTML. While fundamentally based on RedCloth, it also contains the ability to convert standard "BBCode" also, which is useful for forums which use this style of markup since, well... forever. As a drop-in replacement for RedCloth, it plays well such that Textile and BBCode can work side-by-side without much effort for the implementer.

h2. Installing

RedCloth can be installed via RubyGems:

gem install BBRedCloth

It will install the appropriate Ruby gem. JRuby is not supported, nor is the pure-Ruby version.

If you wish to use BBRedCloth in your Rails 3 project, just add the following to your Gemfile:

gem 'BBRedCloth', require:'redcloth'

== Compiling

If you just want to use BBRedCloth, you do NOT need to build/compile it. It is compiled from C sources automatically when you install the gem on the ruby platform.

BBRedCloth can be compiled with rake compile. Ragel 6.3 or greater and the echoe gem (3.1.1) are needed to build, compile, and package RedCloth. Again, Ragel and echoe are NOT needed to simply use RedCloth.

== Using BBRedCloth

BBRedCloth was designed to be mostly drop-in compatible with RedCloth. In fact, it still retains the RedCloth class. However, this makes running BBRedCloth and a newer RedCloth impossible for now.

If you wish to use the general RedCloth/Textile mode with this gem, just do as you normally do!

require 'rubygems'
gem 'BBRedCloth'
require 'RedCloth'
text = "This is *my* text."
RedCloth.new(text).to_html
#=> "

This is my text.

"

h3. BBCode

Because of the drop-in feature, new features must be activated. Just put options in an array after the text. For example:

require 'rubygems'
gem 'BBRedCloth'
require 'RedCloth'
text = "This is *Textile* and [b]BBCode[/b] combined!"
RedCloth.new(text,[:bbcode]).to_html
#=> "

This is Textile and BBCode combined!

"

h3. Filters

Most of RedCloth's options are supported such as :filter_html :

require 'rubygems'
gem 'BBRedCloth'
require 'RedCloth'
text = "This *Textile* and [b]BBCode[/b] and HTML combined!"
RedCloth.new(text,[:bbcode]).to_html
RedCloth.new(text,[:filter_html,:bbcode]).to_html
#=> "

This Textile and BBCode and HTML combined!

" #=> "

This Textile and BBCode and <b>HTML</b> combined!

"

h3. Disabling Certain HTML Code

Additionally, you can disable certain HTML features of BBCode and Textile and they are ignored:

require 'rubygems'
gem 'BBRedCloth'
require 'RedCloth'
RedCloth.new( "Images should *not* be allowed! !test_image.jpg!", [:disable_inline=>:image] ).to_html
#=> "

Images should not be allowed! !test_image.jpg!

"

You can disable the following:

h3. BBCode-Only

If you want to disable Textile, there is a BBCode-only mode:

require 'rubygems'
gem 'BBRedCloth'
require 'RedCloth'
text = "This is *Textile* and [b]BBCode[/b] combined!"
RedCloth.new(text,[:bbcode_only]).to_html
#=> "

This is *Textile* and BBCode combined!

"

h2. BBCode

The following are the tags supported: