I've been using the new ListPages module, and I've noticed that in certain cases it breaks other elements. For starters, any in-line formatting (span) found within the module is broken by line breaks:
[[module ListPages category="category"]]
[[span class="class"]]
%%linked_title%%
%%description%%
[[/span]]
[[span class="class"]]
%%author%%
%%date%%
%%tags%%
[[/span]]
[[/module]]
Also, if you try to make the ListPages module list each page on a separate table row or cell, the table breaks:
[[table class="class"]]
[[module ListPages category="category"]]
[[row]]
[[cell]]
%%linked_title%%
%%description%%
[[/cell]]
[[cell class="class"]]
%%author%%
%%date%%
%%tags%%
[[/cell]]
[[/row]]
[[/module]]
[[/table]]
Currently, the only workaround I know of is to place all table elements within the module, but this creates a new table for every page listed:
[[module ListPages category="category"]]
[[table class="class"]]
[[row]]
[[cell]]
%%linked_title%%
%%description%%
[[/cell]]
[[cell class="class"]]
%%author%%
%%date%%
%%tags%%
[[/cell]]
[[/row]]
[[/table]]
[[/module]]
This happens with the separate option set to true or false. Any help with this would be greatly appreciated.






