Ticket #3002 (closed Bug: fixed)
Use "filters" for the htmlParser API
| Reported by: | fredck | Owned by: | fredck |
|---|---|---|---|
| Priority: | Normal | Milestone: | CKEditor 3.0 |
| Component: | General | Version: | |
| Keywords: | Confirmed Review+ | Cc: |
Description
Currently, we are introducing specific output manipulation directly into the domParser code. This makes that code quite hard to maintain, and less flexible, as it is not able to customize the manipulation with easy.
There should be instead a way to attach a "filter" to the parser, including all necessary rules for it.
In this the data processor can have a public filter property, which can be easily modified by a plugin or external code.
Attachments
Change History
comment:1 Changed 4 years ago by fredck
- Keywords Review? added
- Status changed from new to assigned
The provided patch introduces a quite drastic change in the way we manipulate data. It now parses it not only on output, but also on input (see #3003). Also, all the data transformation logic is now modular, so plugins can easily include their own filtering rules. The fakeobject system now uses it.
