github.com/markdia/terraform@v0.5.1-0.20150508012022-f1ae920aa970/website/helpers/sidebar_helpers.rb (about)

     1  module SidebarHelpers
     2    # This helps by setting the "active" class for sidebar nav elements
     3    # if the YAML frontmatter matches the expected value.
     4    def sidebar_current(expected)
     5      current = current_page.data.sidebar_current || ""
     6      if current.start_with?(expected)
     7        return " class=\"active\""
     8      else
     9        return ""
    10      end
    11    end
    12  end