All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
29 lines
599 B
PHP
29 lines
599 B
PHP
<?php
|
|
|
|
/**
|
|
* XHTML 1.1 Target Module, defines target attribute in link elements.
|
|
*/
|
|
class HTMLPurifier_HTMLModule_Target extends HTMLPurifier_HTMLModule
|
|
{
|
|
/**
|
|
* @type string
|
|
*/
|
|
public $name = 'Target';
|
|
|
|
/**
|
|
* @param HTMLPurifier_Config $config
|
|
*/
|
|
public function setup($config)
|
|
{
|
|
$elements = array('a');
|
|
foreach ($elements as $name) {
|
|
$e = $this->addBlankElement($name);
|
|
$e->attr = array(
|
|
'target' => new HTMLPurifier_AttrDef_HTML_FrameTarget()
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|