1<?php 2/** 3 * Description List element component for the adhoctags plugin 4 * 5 * Defines <dl> ... </dl> syntax 6 * More info: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dl 7 * 8 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 9 * @author Anika Henke <anika@selfthinker.org> 10 * @author Sascha Leib <sascha.leib(at)kolmio.com> 11 */ 12 13class syntax_plugin_adhoctags_dl extends syntax_plugin_adhoctags_abstractblock { 14 15 protected $tag = 'dl'; 16 17}