summaryrefslogtreecommitdiffstats
path: root/scripts/MarkdownBook/Document.pm
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-08-12 07:35:01 (EDT)
committer P. J. McDermott <pjm@nac.net>2012-08-12 07:35:01 (EDT)
commiteda7d670f3545bbf0a5704a19920417c71d25e60 (patch)
tree7f76621fa02e8b7edb21739bf051447ab7b660a6 /scripts/MarkdownBook/Document.pm
parent64bc54a6fed0d8de05df260f83cd7bb177fd93b3 (diff)
Collect sections in book.
Diffstat (limited to 'scripts/MarkdownBook/Document.pm')
-rw-r--r--scripts/MarkdownBook/Document.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/MarkdownBook/Document.pm b/scripts/MarkdownBook/Document.pm
index 6b6b966..63750f3 100644
--- a/scripts/MarkdownBook/Document.pm
+++ b/scripts/MarkdownBook/Document.pm
@@ -213,6 +213,7 @@ sub _do_header
$section = MarkdownBook::Section->new($self,
$section_number, $section_id, $section_title);
push(@{$self->{'sections'}}, $section);
+ $self->{'book'}->add_section($section);
$text = $section_number . ' ' . $section_title;