public function __construct()
 {
     /*
      * make this a tag extension only to avoid weird parser function
      * syntax as we have it in 'display_point' from the beginning!
      */
     parent::__construct(true, false);
 }
	public function __construct() {
		// make this a parser function extension (no tag extension) only:
		parent::__construct( false, true );
	}
Example #3
0
 public function __construct()
 {
     // make this a parser function extension (no tag extension) only:
     parent::__construct(false, true, ParserHook::FH_NO_HASH);
 }