- GitHub Staff
- http://nathos.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Webby | |
class Renderer | |
attr_reader :page | |
end | |
end | |
# To use add interlink to the list of filters in the layout. | |
# Creates links to pages using a MediaWiki-style syntax: | |
# | |
# [[main-page]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module WikiTrail | |
def wiki_trail( *args ) | |
links = args.flatten.map do |name| | |
"> #{link_to_page_unless_current name} <" | |
end | |
links.join(" ") | |
end | |
end |