[TYPO3-RTE] Table in Unordered List

Tapio Markula tapio.markula at xetpoint.fi
Sat Nov 29 09:52:09 CET 2008


Marcus Schwemer kirjoitti:
> Hi,
> 
> is it possible to have a table within a list element. Right now the
> table looks ok in the rte and the database. But in the FE it is rendered
> as html source.
> 
> There is no difference between htmlarearte and tinymce_rte; TYPO3 4.1
> and TYPO3 4.2 is no difference either.
> 
> Any hints how to achieve this?
> 
> Greets and thanks,
> Marcus
> 
source of the problem is apparently 'externalBlocks' in DB > FE 
transformation. apparently the reason is that table and ul/li has been 
handled as externalblock.

This function is actually just splitting the input content according to 
the configuration of "external blocks". This means that before the input 
string is actually "parsed" it will be splitted into the parts 
configured to BE parsed (while other parts/blocks should NOT be parsed). 
Therefore the actual processing of the parseFunc properties goes on in 
->_parseFunc()


that handling *doesn't* allow complex nested structures, because it is 
against the handling of external blocks

try in TS Template
lib.parseFunc_RTE {
	//  makelinks >
	# Processing <table> and <blockquote> blocks separately
	#externalBlocks = table, blockquote, ol,ul
externalBlocks = blockquote

Now Typo3 *doesn't* apply for table, ol and ul the externalBlocks 
handling and apparently Typo3 will not break the layout.


More information about the TYPO3-project-rte mailing list