# File lib/puppet/util/reference.rb, line 27 27: def self.page(*sections) 28: depth = 4 29: # Use the minimum depth 30: sections.each do |name| 31: section = reference(name) or raise "Could not find section %s" % name 32: depth = section.depth if section.depth < depth 33: end 34: text = ".. contents:: :depth: 2\n\n" 35: end