GithubHelp home page GithubHelp logo

Comments (3)

xemlock avatar xemlock commented on August 15, 2024 1

Hi @dkrnl,
There is no easy way to do it at the moment, unfortunately. That's a feature I totally overlooked. But I should come up with a working solution by the end of this week.

Edit: After some investigation it turned out that I was wrong. You can do it like this:

require './vendor/autoload.php';

$initial = HTMLPurifier_HTML5Config::createDefault();
$config = HTMLPurifier_HTML5Config::create($initial);
$config->set('HTML.DefinitionID', 'CustomHTML5');
$config->set('HTML.DefinitionID', 1);

$def = $config->maybeGetRawHTMLDefinition();
if ($def) {
    $def->addElement('oembed', 'Inline', 'Inline', '', []);
}

$purifier = new HTMLPurifier($config);
echo $purifier->purify('<span><oembed>Foo</oembed></span>');

What is important, is that when you add new element definitions, you must provide a new values for HTML.DefinitionID and HTML.DefinitionRev, unique for a given batch of changes. Or just disable definition cache (probably not a good idea) by calling:

$config->set('Cache.DefinitionImpl', null);

from htmlpurifier-html5.

dkrnl avatar dkrnl commented on August 15, 2024

@xemlock thank you for reply.

When i try $config->set("Cache.DefinitionImpl", null); my code working well, but have some performance issues, but it is not important... :-)

And one moment:

$def = $config->maybeGetRawHTMLDefinition();
if ($def) {
    $def->addElement('oembed', 'Inline', 'Inline', '', []);
} else {
   // loaded serialized config from cache?
}

from htmlpurifier-html5.

xemlock avatar xemlock commented on August 15, 2024

Nope. You don't need the else branch, because $def will be null if the HTML definition used by the config is already set up and loaded from cache.

If you're not using cache you will always enter the if branch.

from htmlpurifier-html5.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.