Changes between Initial Version and Version 1 of Ticket #8117, comment 17
- Timestamp:
- Jul 7, 2014, 2:35:42 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8117, comment 17
initial v1 3 3 **Note:** {{{meta}}} tags will be stripped by [http://docs.ckeditor.com/#!/guide/dev_advanced_content_filter ACF] by default. To preserve meta tags add following property to your config: 4 4 {{{ 5 config. allowedContent = 'meta[itemprop,content]';5 config.extraAllowedContent = 'meta[itemprop,content]'; 6 6 }}} 7 or object oriented:8 {{{9 config.allowedContent = {10 'meta': {11 attributes: 'itemprop,content'12 }13 };14 }}}