<?php
/**
 * Preformatted Text element component for the adhoctags plugin
 *
 * Defines  <pre> ... </pre> syntax
 * More info: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/pre
 *
 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
 * @author     Anika Henke <anika@selfthinker.org>
 * @author     Sascha Leib <sascha.leib(at)kolmio.com>
 */

class syntax_plugin_adhoctags_pre extends syntax_plugin_adhoctags_abstractblock {

	protected $tag	= 'pre';

    function getAllowedTypes() {
		return array('formatting','substition');
	}

	function getPType() { return 'normal'; }

}