<?php
* This file is part of the league/commonmark package.
*
* (c) Colin O'Dell <colinodell@gmail.com>
*
* Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js)
* - (c) John MacFarlane
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace League\CommonMark\Reference;
* Link reference
*/
class Reference
{
* @var string
*/
protected $label;
* @var string
*/
protected $destination;
* @var string
*/
protected $title;
* Constructor
*
* @param string $label
* @param string $destination
* @param string $title
*/
public function __construct($label, $destination, $title)
{
$this->label = self::normalizeReference($label);
$this->destination = $destination;
$this->title = $title;
}
* @return string
*/
public function getLabel()
{
return $this->label;
}
* @return string
*/
public function getDestination()
{
return $this->destination;
}
* @return string
*/
public function getTitle()
{
return $this->title;
}
* Normalize reference label
*
* This enables case-insensitive label matching
*
* @param string $string
*
* @return string
*/
public static function normalizeReference($string)
{
$string = preg_replace('/\s+/', ' ', trim($string));
return mb_strtoupper($string, 'UTF-8');
}
}