You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/ROOT/pages/7.5-release-notes.adoc
+70-1Lines changed: 70 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,76 @@ The {productname} {release-version} release includes an accompanying release of
69
69
70
70
For information on the **<Premium plugin name 1>** plugin, see: xref:<plugincode>.adoc[<Premium plugin name 1>].
71
71
72
+
=== Export to PDF
73
+
74
+
The {productname} {release-version} release includes an accompanying release of the **Export to PDF** premium plugin.
75
+
76
+
**Export to PDF** Premium plugin includes the following improvement.
77
+
78
+
=== Added a default value for the `exportpdf_converter_options` option.
79
+
// #TINY-11396
80
+
81
+
As of {productname} {release-version}, the **Export to PDF** Plugin now defaults to U.S. letter page size and applies standard 1-inch margins, ensuring consistency in document formatting out of the box for integrators. The following settings have been applied:
82
+
83
+
[source,js]
84
+
----
85
+
exportpdf_converter_options: {
86
+
format: 'Letter',
87
+
margin_top: '1in',
88
+
margin_right: '1in',
89
+
margin_bottom: '1in',
90
+
margin_left: '1in'
91
+
}
92
+
----
93
+
94
+
For information on the **Export to PDF** plugin, see: xref:exportpdf.adoc[Export to PDF].
95
+
96
+
=== Export to Word
97
+
98
+
The {productname} {release-version} release includes an accompanying release of the **Export to Word** premium plugin.
99
+
100
+
**Export to Word** Premium plugin includes the following improvement.
101
+
102
+
=== Added a default value for the `exportword_converter_options` option.
103
+
// #TINY-11396
104
+
105
+
As of {productname} {release-version}, the **Export to Word** Plugin has been updated to default to the U.S. letter page size, improving compatibility with standard document formats, providing a better out-of-the-box experience for integrators. The following setting has been applied:
106
+
107
+
[source,js]
108
+
----
109
+
exportword_converter_options: {
110
+
document: {
111
+
size: 'letter'
112
+
}
113
+
}
114
+
----
115
+
116
+
For information on the **Export to Word** plugin, see: xref:exportword.adoc[Export to Word].
117
+
118
+
=== Import from Word
119
+
120
+
The {productname} {release-version} release includes an accompanying release of the **Import from Word** premium plugin.
121
+
122
+
**Import from Word** Premium plugin includes the following improvement.
123
+
124
+
=== Added a default value for the `importword_converter_options` option.
125
+
// #TINY-11396
126
+
127
+
As of {productname} {release-version}, the **Import from Word** Plugin now defaults to retaining as much original Word document styling as possible, using the following settings:
128
+
129
+
[source,js]
130
+
----
131
+
importword_converter_options: {
132
+
formatting: {
133
+
styles: 'inline',
134
+
resets: 'inline',
135
+
defaults: 'inline',
136
+
}
137
+
}
138
+
----
139
+
140
+
For information on the **Import from Word** plugin, see: xref:importword.adoc[Import from Word].
141
+
72
142
=== Markdown
73
143
74
144
The {productname} {release-version} release includes an accompanying release of the **Markdown** premium plugin.
@@ -118,7 +188,6 @@ In {productname} {release-version}, the `tinycomments_author` and `tinycomments_
118
188
119
189
For information on the **Comments** plugin, see: xref:introduction-to-tiny-comments.adoc[Introduction to {companyname} Comments].
Copy file name to clipboardExpand all lines: modules/ROOT/partials/configuration/exportpdf.adoc
+15-2Lines changed: 15 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,9 +28,22 @@ tinymce.init({
28
28
29
29
This option allows the editor to download a PDF document containing its content, along with the specified options defined in the `exportpdf_converter_options`.
30
30
31
-
*Type:* `+Object+`
31
+
**Type:** `+Object+`
32
32
33
-
*Default value:* `{}`
33
+
[NOTE]
34
+
As of {productname} 7.5.0, the `exportpdf_converter_options` setting now comes with a default value set to the following:
Copy file name to clipboardExpand all lines: modules/ROOT/partials/configuration/exportword.adoc
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,9 +31,20 @@ tinymce.init({
31
31
32
32
The `exportword_converter_options` option, is used to specify and configure various options related to the process of converting and exporting content from the editor to `.docx` Word file.
33
33
34
-
*Type:* `+Object+`
34
+
**Type:** `+Object+`
35
35
36
-
*Default value:* `{}`
36
+
[NOTE]
37
+
As of {productname} 7.5.0, the default value of the `exportword_converter_options` setting has been updated to the following:
0 commit comments