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