Skip to content

Instantly share code, notes, and snippets.

@hissy
Last active February 15, 2023 03:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hissy/5f3b2be6d9d6b77a8a5dd7e7817149f6 to your computer and use it in GitHub Desktop.
Save hissy/5f3b2be6d9d6b77a8a5dd7e7817149f6 to your computer and use it in GitHub Desktop.
[Concrete CMS] Change Ckeditor DTD settings
<?php
// application/config/site.php
// https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_dtd.html
$dtd = <<<END
CKEDITOR.dtd['a']['div'] = 1;
END;
return [
'sites' => [
'default' => [
'editor' => [
'ckeditor4' => [
'editor_function_options' => $dtd
],
],
],
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment