Feature #39676
Delete empty paragraphs
| Status: | New | Start date: | 2012-08-10 | |
|---|---|---|---|---|
| Priority: | Should have | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | rtehtmlarea | |||
| Target version: | - | |||
| TYPO3 Version: | 4.5 | Complexity: | ||
| PHP Version: | ||||
| Votes: | 1 (View) |
Description
My editors create a lot of empty paragraphs like:
<p>Some text.</p>
<p> </p>
<p> </p>
<p>Some more text.</p>
Well, I don't want them to do that. It's contrary to a consistent layout and makes pages look amateurish.
So, after saving, it should read:
<p>Some text.</p>
<p>Some more text.</p>
Of course, there could be cases where empty paragraphs are actually needed, too.
So it might be better if this were a configuration setting.
History
Updated by Florian Seirer 10 months ago
I actually meant <p>&nonBreakingSpace;</p>.
Forge filtered it out...
Updated by Florian Seirer about 1 month ago
A possible solution is being discussed in #20555.