A section with a block. Corresponds to an HTML header with an id.
Creates a new Section object with the given level, id, and title.
[Source]
# File lib/webgen/content.rb, line 46 46: def initialize( level, id, title ) 47: @level, @id, @title = level, id, title 48: @subsections = [] 49: end
[Validate]