* Highlights syntax of cascading style sheets.
*
* @author Tim Duesterhus
- * @copyright 2001-2018 WoltLab GmbH
+ * @copyright 2001-2019 WoltLab GmbH
* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
* @package WoltLabSuite\Core\System\Bbcode\Highlighter
+ * @deprecated since 5.2, use Prism to highlight your code.
*/
class CssHighlighter extends Highlighter {
- /**
- * temporary string replacement map for properties that can also be tags
- * @var string[]
- */
- public static $duplicates = [
- 'table:' => 't@@able:',
- 'caption:' => 'c@@aption:',
- 'menu:' => 'm@@enu:',
- 'code:' => 'c@@ode:',
- 'sub:' => 's@@ub:',
- 'pre:' => 'p@@re:',
- 'small:' => 's@@mall:'
- ];
-
/**
* @inheritDoc
*/