2022-09-20 19:59:52 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Service\HtmlPurifier;
|
|
|
|
|
|
|
|
class HTMLPurifier_URIScheme_notion extends \HTMLPurifier_URIScheme
|
|
|
|
{
|
|
|
|
public $browsable = true;
|
2024-02-23 10:54:12 +00:00
|
|
|
|
2022-09-20 19:59:52 +00:00
|
|
|
public $may_omit_host = true;
|
|
|
|
|
|
|
|
public function doValidate(&$uri, $config, $context)
|
|
|
|
{
|
|
|
|
if ($uri->host == 'www.notion.so' || $uri->host == 'notion.so') {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|