module Nexmo module OAS module Renderer module Helpers module Navigation HEADING_TAG_DEPTHS = { 'h0' => 0, 'h1' => 1, 'h2' => 2, 'h3' => 3, 'h4' => 4, 'h5' => 5, 'h6' => 6, }.freeze def navigation_from_content(content:, title: nil) content = "#{title}\n" + content if title document = build_document(content) nodes = ['' nodes.join("\n").html_safe end private def build_document(content) Nokogiri::HTML::DocumentFragment.parse(content) end end end end end end