Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion Documentation/Functions/Htmlparser.rst
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,28 @@ removeTags

.. confval:: removeTags
:name: htmlparser-removeTags
:type: (ibid)
:type: string-list / array

List of tags (among the already set tags), which will be configured so
they are surely removed.

.. code-block:: yaml
:caption: EXT:rte_ckeditor/Configuration/RTE/Processing.yaml

processing:
HTMLparser_db:
removeTags: [link, meta, o:p, sdfield, style, title]
# "string" definition is also possible:
# removeTags: link, meta, o:p, sdfield, style, title

.. code-block:: typoscript
:caption: EXT:my_extension/Configuration/TypoScript/page.tsconfig

RTE.default.proc {
HTMLparser_db {
removeTags: link, meta, o:p, sdfield, style, title
}
}

.. _htmlparser-keepNonMatchedTags:

Expand Down