OSDN Git Service

Import current code.
[osdn-codes/wiki-parser.git] / sfjp / wiki / plugin / pagebreak.php
1 <?php
2 namespace sfjp\Wiki\Plugin;
3 use sfjp\Wiki\Exception\Plugin_Error;
4 class PageBreak extends Base {
5         public $is_vary = false;
6         public $is_block = true;
7         public function process($args) {
8                 return $this->getFormatter()->raw_node('<div style="page-break-after: always;"></div>');
9         }
10 }