Acts As Blog plugin
Plugin details
Documentation
Install the plugin:
ruby script/plugin install http://svn.recentrambles.com/plugins/acts_as_blog
example of posts model
class Post < ActiveRecord::Base acts_as_blog ## before we save, we need to transform the markup into html before_save :transform_post has_many :comments # we need to keep the posts table in good shape! validates_presence_of :date, :raw_post, :title, :category, :description ## transform the text into valid html def transform_post self.post = Post.convert_to_html(self.raw_post, 'textile') end
Here is an example of the comments model.
class Comment < ActiveRecord::Base acts_as_blog belongs_to :post before_save :transform_comment ## validation checks validates_presence_of :name, :raw_comment ## we filter out all html tags except those created by the markup def transform_comment self.comment = Comment.convert_to_html(self.raw_comment,'textile',[:filter_html]) end
The available markup style are markdown,textile,smartypants. To run the method, you just need to pass the raw text,markup style, and then any filters you need to use. It will return the valid html from your raw text. Just remember, to use one of the markup styles, they need to be installed
gem install RedCloth gem install BlueCloth gem install RubyPants
Further Documentation
There is currently no advanced documentation for this plugin.
New documentationEdit plugin | (0 older versions) | Last edited by: Guest, 8 months ago

