class Wikilink < WikiCloth::WikiLinkHandler def url_for(page) "/wiki/#{page}" end def link_attributes_for(page) permalink = Page.permalink(page) if Page.exists?(:permalink => permalink) { :href => url_for(permalink) } else { :href => url_for(page), :class => "new_wiki_link"} end end def section_link(section) "" end end