summaryrefslogtreecommitdiff
path: root/pandoc-memoir
diff options
context:
space:
mode:
Diffstat (limited to 'pandoc-memoir')
-rwxr-xr-xpandoc-memoir6
1 files changed, 3 insertions, 3 deletions
diff --git a/pandoc-memoir b/pandoc-memoir
index 6954877..c15ebe6 100755
--- a/pandoc-memoir
+++ b/pandoc-memoir
@@ -7,7 +7,7 @@ use feature qw(switch);
no if $] >= 5.018, warnings => "experimental::smartmatch";
use Pandoc::Filter 0.06;
-use Pandoc::Elements;
+use Pandoc::Elements 0.12;
my ( $frontmatter_seen, $mainmatter_seen, $backmatter_seen, $toc_seen);
@@ -23,7 +23,7 @@ sub matter {
my (@replace, @prepend);
# push @prepend, RawBlock( 'latex', '\\frontmatter' )
# unless ($toc_seen++);
- given (stringify($self)) {
+ given ($self->string) {
when ( /^Table/ and not $frontmatter_seen++ ) {
push @replace, RawBlock( 'latex',
'{\\hypersetup{linkcolor=black}\\setcounter{tocdepth}{3}\\cleartorecto\\tableofcontents}'
@@ -48,6 +48,6 @@ sub matter {
sub toc {
my $self = shift;
return []
- if ( $self->name eq 'Para' and stringify($self) =~ /__TOC__/ );
+ if ( $self->name eq 'Para' and $self->string =~ /__TOC__/ );
return;
}