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
+69Lines changed: 69 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,75 @@ 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].
0 commit comments