class Tabulous::Html5Renderer

Public Instance Methods

subtabs_html() click to toggle source
# File lib/tabulous/renderers/html5_renderer.rb, line 14
    def subtabs_html
      <<-HTML.strip_heredoc
        <nav class="subtabs">
          <ul>
            #{ subtab_list_html }
          </ul>
        </nav>
      HTML
    end
tabs_html() click to toggle source
# File lib/tabulous/renderers/html5_renderer.rb, line 4
    def tabs_html
      <<-HTML.strip_heredoc
        <nav class="tabs">
          <ul>
            #{ tab_list_html }
          </ul>
        </nav>
      HTML
    end