Skip to content

Instantly share code, notes, and snippets.

View nathos's full-sized avatar

Nathan Henderson nathos

View GitHub Profile
@nathos
nathos / interlink.rb
Created December 10, 2009 20:14 — forked from mattstevens/interlink.rb
Interlink - MediaWiki-style link generation for Webby
@nathos
nathos / wiki_trail.rb
Created March 16, 2009 03:16 — forked from TwP/wiki_trail.rb
WikiTrail - wiki-style backlinks for Webby
module WikiTrail
def wiki_trail( *args )
links = args.flatten.map do |name|
"> #{link_to_page_unless_current name} <"
end
links.join(" ")
end
end