module PagesHelper include WikiCloth def rss_meta_tag tag('link', :rel => "alternate", :type => "application/rss+xml", :title => "RSS", :href => all_pages_rss_url).html_safe end def wikified_body(body, title = nil) WikiCloth.new(:data => body+"\n", :link_handler => Wikilink.new, :params => {:referer => title}) .to_html(wikicloth_render_options) .html_safe rescue => e "#{t('.wikicloth_exception', :msg => e)}".html_safe # try the following with line breaks: === one === == two == = three = end def link_to_wikipage(page, text = nil) if text == nil link_to page.title, wiki_page_path(:permalink => page.permalink) else link_to text, wiki_page_path(:permalink => page.permalink) end end def link_to_wikipage_by_permalink(permalink, text = nil) unless permalink.blank? page = Page.find_by_permalink(permalink) if page.nil? if text.nil? link_to permalink, new_page_path(:title => permalink) else link_to text, new_page_path(:title => permalink) end else link_to_wikipage(page, text) end end end def generate_toc(body) toc = String.new body.gsub(/^([=]{1,6})\s*(.*?)\s*(\1)/) do number = $1.length - 1 name = $2 toc << "*" * number + " #{name}\n" end unless toc.blank? WikiCloth.new(:data => toc, :link_handler => Wikilink.new) .to_html(wikicloth_render_options) .gsub(/