See also #25, where carsten updated the xinha plugin to output a new pagebreak. News and Pages are using a pagebreak to split content into several pages e.g. in Pages ``` // Explode the review into an array of seperate pages $allpages = explode('<!--pagebreak-->', $item['content']); ``` however the following outputs are produced - tinymce ``` <!-- pagebreak --> ``` - xinha: ``` <div class="pagebreak"><div><!--pagebreak--> ``` - ckeditor: ``` <div style="page-break-after: always;"><span style="display: none;"> </span></div> ``` Maybe a zikulapagebreak should be used that outputs always the same instead of the default editor specific pagebreak plugin output.
See also #25, where carsten updated the xinha plugin to output a new pagebreak.
News and Pages are using a pagebreak to split content into several pages
e.g. in Pages
however the following outputs are produced
Maybe a zikulapagebreak should be used that outputs always the same instead of the default editor specific pagebreak plugin output.