module Gollum class Macro class GlobalTOC < Gollum::Macro def render(title = "Global Table of Contents") if @wiki.pages.size > 0 result = '' end "
#{title}
#{result}
" end end end end