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/partials/configuration/automatic_uploads.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
[[automatic_uploads]]
2
2
== `automatic_uploads`
3
3
4
-
Enable or disable automatic upload of images represented by data URLs or blob URIs. Such images get generated, for example, as a result of image manipulation through link:{baseurl}/plugins/opensource/imagetools[Image Tools] plugin, or after image is drag-n-dropped onto the editor from the desktop.
4
+
Enable or disable automatic upload of images represented by data URLs or blob URIs. Such images get generated, for example, as a result of image manipulation through xref:plugins/opensource/imagetools.adoc[Image Tools] plugin, or after image is drag-n-dropped onto the editor from the desktop.
5
5
6
6
NOTE: This option will do nothing if `images_upload_url` is not specified.
Copy file name to clipboardExpand all lines: modules/ROOT/partials/configuration/browser_spellcheck.adoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
4
4
This option configures {productname} to use the browser's native spell checker.
5
5
6
-
`browser_spellcheck` is not available in either Internet Explorer 8 or 9, as neither browser has native spell checker functionality. For more complete browser support, we recommend using link:../../enterprise/check-spelling/[Spell Checker Pro].
6
+
`browser_spellcheck` is not available in either Internet Explorer 8 or 9, as neither browser has native spell checker functionality. For more complete browser support, we recommend using xref:plugins/premium/tinymcespellchecker.adoc[Spell Checker Pro].
7
7
8
8
*Type:* `Boolean`
9
9
@@ -19,4 +19,4 @@ tinymce.init({
19
19
});
20
20
----
21
21
22
-
For more information about spell checking in {productname}, see link:{baseurl}/general-configuration-guide/spell-checking/[this page] in the General-configuration-guide/ guide.
22
+
For more information about spell checking in {productname}, see xref:general-configuration-guide/spell-checking.adoc[this page] in the General-configuration-guide/ guide.
There is no default value for the `content_langs` option. If no value is specified, the `language` toolbar button and menu item are not available. A default value for this option is provided by the Spell Checker Pro plugin. For information on using the `content_langs` option with the Spell Checker Pro plugin, see: link:{baseurl}/plugins/premium/tinymcespellchecker/#content_langs[Spell Checker Pro plugin - `content_langs`].
8
+
There is no default value for the `content_langs` option. If no value is specified, the `language` toolbar button and menu item are not available. A default value for this option is provided by the Spell Checker Pro plugin. For information on using the `content_langs` option with the Spell Checker Pro plugin, see: xref:plugins/premium/tinymcespellchecker.adoc#content_langs[Spell Checker Pro plugin - `content_langs`].
Copy file name to clipboardExpand all lines: modules/ROOT/partials/configuration/content_langs_base.adoc
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
This option sets the languages displayed in the `language` toolbar button and the `language` menu item. The option accepts an array of language specs. Each language spec is a JavaScript object defined using the following properties.
Copy file name to clipboardExpand all lines: modules/ROOT/partials/configuration/formats.adoc
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ This option is used to override default {productname} *formats* or add custom *f
5
5
6
6
{productname} is equipped with a formatting engine that allows you to register a set of styles and attributes as a named *format*. For example, the `bold` format is the style that is applied to text when the bold button is clicked.
7
7
8
-
Check out the link:{baseurl}/demo/format-custom/[custom formats example] for a demonstration of this option.
8
+
Check out the xref:demo/format-custom.adoc[custom formats example] for a demonstration of this option.
9
9
10
10
The `formats` configuration option takes an object of format name and format specification pairs. Each format specification must be defined as an object where the value is either an object of format options or an array of such objects.
11
11
@@ -41,7 +41,7 @@ There are three types of formats:
41
41
* Inline format
42
42
* Selector format
43
43
44
-
All three format types can be used with the `formats` configuration option. They can also be used to specify a new format item in the link:{baseurl}/configure/editor-appearance/#style_formats[`style_formats`] configuration option. However, a format that is specified using `formats` is then registered with the editor, and can be referred to by name in `style_formats` rather than needing to specify the format again.
44
+
All three format types can be used with the `formats` configuration option. They can also be used to specify a new format item in the xref:configure/editor-appearance.adoc#style_formats[`style_formats`] configuration option. However, a format that is specified using `formats` is then registered with the editor, and can be referred to by name in `style_formats` rather than needing to specify the format again.
45
45
46
46
For example, these two configurations are equivalent:
47
47
@@ -71,7 +71,7 @@ tinymce.init({
71
71
});
72
72
----
73
73
74
-
A registered format can also be used by name with the built-in link:{baseurl}/api/tinymce/tinymce.formatter[formatter] methods. See link:{baseurl}/configure/content-formatting/#usingcustomformats[/configure/content-formatting/#usingcustomformats] for an example.
74
+
A registered format can also be used by name with the built-in xref:apis/tinymce.formatter.adoc[formatter] methods. See xref:configure/content-formatting.adoc#usingcustomformats[Using custom formats] for an example.
75
75
76
76
==== `block`
77
77
@@ -270,7 +270,7 @@ Specifies what the remove behavior of the element should be when the format is r
270
270
271
271
This can be set to three different modes:
272
272
273
-
* *none*: Only styles, classes or attributes are removed from the element the element is never removed.
273
+
* *none*: Only styles, classes or attributes are removed from the element. The element is never removed.
274
274
* *empty*: If the element has no styles, classes, or attributes then the element is removed.
275
275
* *all*: Removes the element regardless of its styles, classes, and or attributes.
276
276
@@ -423,6 +423,7 @@ tinymce.init({
423
423
});
424
424
----
425
425
426
+
[[usingcustomformats]]
426
427
=== Using custom formats
427
428
428
429
Custom formats can be handled through the {productname} API. Here is a basic example of usage for the custom format defined above.
Copy file name to clipboardExpand all lines: modules/ROOT/partials/configuration/gecko_spellcheck.adoc
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,7 @@
1
1
[[gecko_spellcheck]]
2
2
== `gecko_spellcheck`
3
3
4
-
____
5
-
Gecko Spell Check was deprecated in TinyMCE v4.3 (consider using <<browser_spellcheck,#browser_spellcheck>>). This option will be removed in {productname} 6.0.
6
-
____
4
+
NOTE: Gecko Spell Check was deprecated in TinyMCE v4.3 (consider using xref:browser_spellcheck[browser_spellcheck]). This option will be removed in {productname} 6.0.
7
5
8
6
This option allows you to disable https://en.wikipedia.org/wiki/Gecko_(software)[Gecko] based browsers' internal spell checker from being used in {productname}.
Copy file name to clipboardExpand all lines: modules/ROOT/partials/configuration/iframe_aria_text.adoc
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,12 +4,12 @@
4
4
include::partial$misc/requires_5_9v.adoc[]
5
5
6
6
This option is used to customize the `title` attribute on the {productname} `iframe` element. For example:
7
+
[source, html]
8
+
----
9
+
<iframe title="Rich Text Area. Press ALT-0 for help."></iframe>
10
+
----
7
11
8
-
```html+++<iframe title="Rich Text Area. Press ALT-0 for help.">++++++</iframe>+++
9
-
10
-
```
11
-
12
-
The `title` attribute is read by screen-readers to help users identify the editor. This option only applies to {productname} classic (iframe) mode and has no effect on link:{baseurl}/configure/editor-appearance/#inline[`inline` editors].
12
+
The `title` attribute is read by screen-readers to help users identify the editor. This option only applies to {productname} classic (iframe) mode and has no effect on xref:configure/editor-appearance.adoc#inline[`inline` editors].
Copy file name to clipboardExpand all lines: modules/ROOT/partials/configuration/images_file_types.adoc
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,19 +1,20 @@
1
1
[[images_file_types]]
2
-
===`images_file_types`
2
+
== `images_file_types`
3
3
4
4
include::partial$misc/requires_5_6v.adoc[]
5
5
6
6
This option configures which image file formats are accepted by the editor. Changing this option will adjust the following editor behaviour:
7
-
- Which image file formats are allowed to be uploaded in the xref:plugins/opensource/image.adoc[Image] dialog.
8
-
- Which image file formats are recognized and placed in an `img` element by the xref:plugins/opensource/paste.adoc[Paste] and xref:plugins/premium/powerpaste.adoc[PowerPaste] `smart_paste` functionality.
7
+
8
+
* Which image file formats are allowed to be uploaded in the xref:plugins/opensource/image.adoc[Image] dialog.
9
+
* Which image file formats are recognized and placed in an `img` element by the xref:plugins/opensource/paste.adoc[Paste] and xref:plugins/premium/powerpaste.adoc[PowerPaste] `smart_paste` functionality.
*Possible Values:* A list of valid web image file extensions. For a list of possible values see: https://developer.mozilla.org/en-US/docs/Web/Media/Formats/Image_types[MDN Web Docs - Image file type and format guide].
0 commit comments