1<?php 2/** 3 * Copyright (c) 2021. ComboStrap, Inc. and its affiliates. All Rights Reserved. 4 * 5 * This source code is licensed under the GPL license found in the 6 * COPYING file in the root directory of this source tree. 7 * 8 * @license GPL 3 (https://www.gnu.org/licenses/gpl-3.0.en.html) 9 * @author ComboStrap <support@combostrap.com> 10 * 11 */ 12 13namespace ComboStrap; 14 15 16use dokuwiki\Extension\SyntaxPlugin; 17 18abstract class Syntax extends SyntaxPlugin 19{ 20 21 const NODE_TYPE_BLOCK = "block"; 22 const NODE_TYPE_INLINE = "block"; 23 24 /** 25 * @return mixed 26 */ 27 public abstract function getNodeType(); 28 29} 30