Установил компонент Hs Syntax Highlighter для Joomla, но есть один вопрос. Почему-то когда вставляешь код
<head>
<jdoc:include type="head" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/bootstrap-reboot.min.css">
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/bootstrap-grid.min.css">
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/bootstrap.min.css">
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/style.css">
<script src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/jquery-3.2.1.min.js" type="text/javascript" charset="utf-8"></script>
<script src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/bootstrap.bundle.min.js" type="text/javascript" charset="utf-8"></script>
<script src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/bootstrap.min.js" type="text/javascript" charset="utf-8"></script>
<link rel="icon" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/favicon.png" type="image/x-icon">
<link rel="shortcut icon" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/favicon.png" type="image/x-icon">
<?php
if($this->countModules('right') == 0) $contentwidth = "100";
if($this->countModules('right') == 1) $contentwidth = "80";
?>
</head>
На сайт, то он добавляет к ссылкам вначале слеш / и получается так
<head>
<jdoc:include type="head" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="/<?php echo $this->baseurl ?>/templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" href="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/bootstrap-reboot.min.css">
<link rel="stylesheet" href="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/bootstrap-grid.min.css">
<link rel="stylesheet" href="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/bootstrap.min.css">
<link rel="stylesheet" href="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/style.css">
<script src="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/jquery-3.2.1.min.js" type="text/javascript" charset="utf-8"></script>
<script src="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/bootstrap.bundle.min.js" type="text/javascript" charset="utf-8"></script>
<script src="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/bootstrap.min.js" type="text/javascript" charset="utf-8"></script>
<link rel="icon" href="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/favicon.png" type="image/x-icon">
<link rel="shortcut icon" href="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/favicon.png" type="image/x-icon">
<?php
if($this->countModules('right') == 0) $contentwidth = "100";
if($this->countModules('right') == 1) $contentwidth = "80";
?>
</head>
Как сделать так, чтобы он не добавлял в начало ссылки слеш? Причем слеш он добавляет к тем ссылкам, где начинается с конструкции PHP