Esempio n. 1
0
File: Hr.php Progetto: burbuja/pluf
 function __construct($wr)
 {
     parent::__construct($wr);
     $this->type = 'hr';
     $this->regexp = '/^={4,} *$/';
     $this->_closeNow = true;
 }
Esempio n. 2
0
 function __construct($wr)
 {
     parent::__construct($wr);
     $this->type = 'dfn';
     $this->regexp = "/^;(.*) : (.*)/i";
     $this->_openTag = '<dl>';
     $this->_closeTag = '</dl>';
 }
Esempio n. 3
0
File: P.php Progetto: burbuja/pluf
 function __construct($wr)
 {
     parent::__construct($wr);
     $this->type = 'p';
     $this->regexp = "/(.*)/";
     $this->_openTag = '<p>';
     $this->_closeTag = '</p>';
 }
Esempio n. 4
0
 function __construct($wr)
 {
     parent::__construct($wr);
     $this->type = 'table';
     $this->regexp = "/^\\| ?(.*)/";
     $this->_openTag = '<table border="1">';
     $this->_closeTag = '</table>';
 }
Esempio n. 5
0
 function __construct($wr)
 {
     parent::__construct($wr);
     $this->type = 'title';
     $this->regexp = "/^(\\!{1,3})(.*)/";
     $this->_closeNow = true;
     $cfg = $wr->getConfig();
     $this->_minlevel = $cfg->minHeaderLevel;
     $this->_order = $cfg->headerOrder;
 }
Esempio n. 6
0
 function __construct($wr)
 {
     parent::__construct($wr);
     $this->type = 'list';
     $this->regexp = "/^([\\*#-]+)(.*)/";
 }
Esempio n. 7
0
 function __construct($wr)
 {
     parent::__construct($wr);
     $this->type = 'bq';
     $this->regexp = "/^(\\>+)(.*)/";
 }