public
Description: This plugin will convert attributes from Markdown into html.
Homepage:
Clone URL: git://github.com/fesplugas/markdown_fu.git
name age message
file .gitignore Mon May 26 11:59:00 -0700 2008 Fix hiperlinks in RDoc. Ignores .svn in .gitign... [bernardo]
file MIT-LICENSE Mon May 26 12:06:10 -0700 2008 Removed spaces [Francesc Esplugas]
file README Tue Jun 17 05:47:11 -0700 2008 Fixed markup [Francesc Esplugas]
file Rakefile Tue Jun 17 05:44:54 -0700 2008 Set encoding to utf-8 [Francesc Esplugas]
file init.rb Mon May 26 12:24:25 -0700 2008 Moved ActiveRecord::Base.send to markdown_fu.rb [Francesc Esplugas]
directory lib/ Sat Mar 21 05:19:58 -0700 2009 Use RDiscount instead of Maruku. [Francesc Esplugas]
directory test/ Sat Mar 21 05:19:58 -0700 2009 Use RDiscount instead of Maruku. [Francesc Esplugas]
README
== MarkdownFu

"Markdown is a text-to-HTML conversion tool for web writers. Markdown allows 
you to write using an easy-to-read, easy-to-write plain text format, then 
convert it to structurally valid XHTML (or HTML)."

Markdown was created by {John Gruber}[http://daringfireball.net/projects/markdown/]

MarkdownFu is a Rails (ActiveRecord) plugin which will convert attributes from 
Markdown into html and store the result in the <tt>[attribute_name]_html</tt> attribute. 
You will need to define such attribute in your migrations for each markdown 
enabled attribute in your models.

You may define multiple markdown attributes per model and they will be inherited
to subclasses using Single Table Inheritance.

== Example

    class Page < ActiveRecord::Base

      # stores the html version of content into content_html
      markdown :content

      # stores html version of markdown_body into converted_body
      markdown :markdown_body, :converted_body

    end

== Credits

- Originally based on textilizefu[http://github.com/adelcambre/textilizefu/] by adelcambre.
- Francesc Esplugas Marti - Initial implementation
- Bernardo de Padua - Rewritten to support multiple markdown attributes per
  model and added tests.

Copyright (c) 2008 Francesc Esplugas Marti, Bernardo de Padua released under the MIT license