BLENBLEN, Inc. Logo
WorksCapabilitiesCompanyIdeasCareersConnect

Let's work together

We partner with federal agencies and businesses to deliver innovative solutions that drive real value.

Federal Set-Asides

  • 8(a) Business Development Program
  • Service Disabled Veteran Owned Small Business (SDVOSB)
  • HUBZone Certified Small Business

Service Codes

  • UEI: KAR6JDB1HJ16, CAGE Code: 5HC49
  • NAICS Code: 541511, 541512, 541611, 541519, 541618, 541690, 541715, 611430
WorksCapabilitiesCompanyIdeasCareersConnect
LinkedInTwitterGitHub

© 2026 BLEN, Inc. All rights reserved.

CKEditor extraAllowedContent with a Twist

  • mike_endale

    Mike Endale

Ever wanted to have fun with CKEditor? Well, let's see.

We wanted to allow CKEditor to have an in-line stylesheet for a specific class while enabling the Advanced Content Filter. This turns out pretty tricky because of the spotty CKEditor documentation and we thought we'd share. Here is a simple one liner that can solve your headache.

config.extraAllowedContent = 'a(!simple-button-plugin){*}[*]';

This will have the following effect:

  • a - Element you want to keep the in-line style.
  • !simple-button-plugin - The simple-button-plugin is a class name and ! forces the button to be matched.
  • {*} - Allows all style properties be allowed.
  • [*] - Allows all attributes be allowed.