diff --git a/modules/ROOT/pages/8.0-release-notes.adoc b/modules/ROOT/pages/8.0-release-notes.adoc index 7c62f25b54..296127e5b0 100644 --- a/modules/ROOT/pages/8.0-release-notes.adoc +++ b/modules/ROOT/pages/8.0-release-notes.adoc @@ -121,10 +121,17 @@ For information on using Enhanced Skins & Icon Packs, see: xref:enhanced-skins-a {productname} {release-version} also includes the following change: -// === -// #TINY-vwxyz1 +=== Changed the default value for the `pagebreak_separator` option. +// #TINY-12013 -// CCFR here. +In previous versions of {productname}, inserting a page break in the editor did not translate correctly when exporting using the xref:exportpdf.adoc[Export to PDF] plugin. Similarly, the xref:exportword.adoc[Export to Word] plugin also failed to preserve page breaks in the exported documents. As a result, exported files lacked the intended page breaks, leading to confusing output for users. + +With the release of {productname} {release-version}, this issue has been resolved by updating the default HTML value of the `pagebreak_separator` option: + +* **Old value** – `''` +* **New value** – `'
'` + +This change aligns better with modern standards and ensures that page breaks are now accurately rendered in exported documents. [[removed]] diff --git a/modules/ROOT/partials/configuration/pagebreak_separator.adoc b/modules/ROOT/partials/configuration/pagebreak_separator.adoc index e5624ca5cf..5ba3a93393 100644 --- a/modules/ROOT/partials/configuration/pagebreak_separator.adoc +++ b/modules/ROOT/partials/configuration/pagebreak_separator.adoc @@ -3,7 +3,7 @@ *Type:* `+String+` -*Default value:* `+''+` +*Default value:* `+'
'+` === Example: using `+pagebreak_separator+` @@ -13,6 +13,6 @@ tinymce.init({ selector: 'textarea', // change this value according to your HTML plugins: 'pagebreak', toolbar: 'pagebreak', - pagebreak_separator: '' + pagebreak_separator: '
My page break
' }); ----