add custom class VanillaHtmlFormatter

What would be the best way to add custom class VanillaHtmlFormatter in library/core/class.vanillahtmlformatter.php

Thks,

Comments

  • There seems to be a function "addExtraAllowedClasses" that you can use, I'm not entirely sure how to access the formatter in a plugin though...

    I suspect it has something to do with Gdn::factory("VanillaHTMLFormatter")? But that returns null...

  • @Caylus Thks, work perfect

            /**
             * @param Container $container
             */
            public function container_init_handler($container) {
                $container->get(VanillaHtmlFormatter::class)->addExtraAllowedClasses(['test']);
            }
    
Sign In or Register to comment.