Renders the ‘chain’ of selected navigation items as simple text items, joined with an optional separator (similar to breadcrumbs, but without markup).
# File lib/simple_navigation/renderer/text.rb, line 7 def render(item_container) list(item_container).compact.join(options[:join_with] || ' ') end