1<?php
2/**
3 * Abbreviation element syntax component for the adhoctags plugin
4 *
5 * Defines  <abbr> ... </abbr> syntax
6 * More info: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/abbr
7 *
8 * Note: <abbr> tags (including titles) are also inserted by DokuWiki for known abbreviations!
9 *
10 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
11 * @author     Anika Henke <anika@selfthinker.org>
12 * @author     Sascha Leib <sascha.leib(at)kolmio.com>
13 */
14
15class syntax_plugin_adhoctags_abbr extends syntax_plugin_adhoctags_abstractinline {
16
17	protected $tag	= 'abbr';
18
19}