diff options
Diffstat (limited to 'scripts/MarkdownBook/Document')
-rw-r--r-- | scripts/MarkdownBook/Document/Txt.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/MarkdownBook/Document/Txt.pm b/scripts/MarkdownBook/Document/Txt.pm index 4f30d43..e03a1bb 100644 --- a/scripts/MarkdownBook/Document/Txt.pm +++ b/scripts/MarkdownBook/Document/Txt.pm @@ -33,7 +33,7 @@ sub output print($out_fh $self->{'title'} . "\n" . '*' x length($self->{'title'}) . "\n\n\n"); - print($out_fh $self->{'source_text'}); + print($out_fh $self->{'book'}->subst_macros($self->{'source_text'})); close($out_fh); } |