Added 'add_anchors' Twig function.

Этот коммит содержится в:
Casey McLaughlin 2015-01-22 17:18:46 -05:00
родитель 32b1f93d14
Коммит 42bbb63e97

Просмотреть файл

@ -94,6 +94,10 @@ class TocTwigExtension extends Twig_Extension
return $this->generator->getMenu($markup, $top, $depth);
});
$functions[] = new \Twig_SimpleFunction('add_anchors', function($markup, $top = 1, $depth =2) {
return $this->fixer->fix($markup, $top, $depth);
}, ['is_safe' => ['html']]);
return $functions;
}