Skip to content

Commit 52a6498

Browse files
committed
switching internal links to xrefs
1 parent a7ddaf4 commit 52a6498

File tree

119 files changed

+992
-992
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+992
-992
lines changed

modules/ROOT/pages/Installation.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44

55
Installing TinyMCE is very simple; follow the instructions here. We give a few examples of how to integrate TinyMCE. You should also take a look at TinyMCE's extensive configuration options.
66

7-
Recently added is the https://www.tiny.cloud/docs-3x/reference/for-dummies/[For Dummies section].
7+
Recently added is the xref:reference/for-dummies.adoc[For Dummies section].
88

99
[[requirements]]
1010
== Requirements
1111

12-
TinyMCE has no direct requirements except for browser compatibility (see https://www.tiny.cloud/docs-3x/extras/Browser_compatiblity/[TinyMCE:compatibility] and, of course, having JavaScript enabled.
12+
TinyMCE has no direct requirements except for browser compatibility (see xref:extras/Browser_compatiblity.adoc[TinyMCE:compatibility] and, of course, having JavaScript enabled.
1313

1414
There is NO back-end code distributed with TinyMCE.
1515

16-
TinyMCE can be set up to use textareas in an HTML form as a workspace. When the form is submitted you can have your system do something with the content of the textarea such as save the HTML code to a database or file. Your frontend can also be set up to read in existing content so you can make changes to it. Refer to Configuration Options, General, https://www.tiny.cloud/docs-3x/reference/configuration/mode/[Mode] for more information.
16+
TinyMCE can be set up to use textareas in an HTML form as a workspace. When the form is submitted you can have your system do something with the content of the textarea such as save the HTML code to a database or file. Your frontend can also be set up to read in existing content so you can make changes to it. Refer to Configuration Options, General, xref:reference/configuration/mode.adoc[Mode] for more information.
1717

1818
[[windows-specific-apache-configuration]]
1919
== Windows specific Apache configuration
@@ -120,7 +120,7 @@ which should be turned into :
120120
121121
```
122122
123-
Conclusion: this part will control the editor's look and functionalities. You can adapt it to your needs according to [TinyMCE:Configuration](https://www.tiny.cloud/docs-3x/reference/Configuration3x/).
123+
Conclusion: this part will control the editor's look and functionalities. You can adapt it to your needs according to [TinyMCE:Configuration](xref:reference/Configuration3x.adoc).
124124
125125
## Examples
126126

modules/ROOT/pages/api/class_tinyMCEPopup.html.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
TinyMCE popup/dialog helper class. This gives you easy access to the parent editor instance and a bunch of other things. It's higly recommended that you load this script into your dialogs.
1616

1717
[[public-methods]]
18-
== Public Methods
18+
== Public Methods
1919
anchor:publicmethods[historical anchor]
2020

2121
|===
@@ -71,18 +71,18 @@ anchor:publicmethods[historical anchor]
7171
|===
7272

7373
[[public-events]]
74-
== Public Events
74+
== Public Events
7575
anchor:publicevents[historical anchor]
7676

7777
|===
7878
| Event | Defined By
7979

80-
| <<oninit,onInit>>(editor:https://www.tiny.cloud/docs-3x/api/class_tinymce.Editor.html[Editor]) : [.static]#[static]# Fires when the popup is initialized.
80+
| <<oninit,onInit>>(editor:xref:api/class_tinymce.Editor.adoc[Editor]) : [.static]#[static]# Fires when the popup is initialized.
8181
| tinyMCEPopup
8282
|===
8383

8484
[[method-details]]
85-
== Method details
85+
== Method details
8686
anchor:methoddetails[historical anchor]
8787

8888
[[alert]]
@@ -314,21 +314,21 @@ Restores any stored selection. This can be useful since some browsers looses it'
314314
Stores the current editor selection for later restoration. This can be useful since some browsers looses it's selection if a control element is selected/focused inside the dialogs.
315315

316316
[[event-details]]
317-
== Event details
317+
== Event details
318318
anchor:eventdetails[historical anchor]
319319

320320
[[oninit]]
321321
=== onInit
322322

323-
*_public static event onInit(editor:https://www.tiny.cloud/docs-3x/api/class_tinymce.Editor.html[Editor])_* +
323+
*_public static event onInit(editor:xref:api/class_tinymce.Editor.adoc[Editor])_* +
324324
Fires when the popup is initialized.
325325

326326
*Parameters*
327327

328328
|===
329329
| Param | Detail
330330

331-
| editor:https://www.tiny.cloud/docs-3x/api/class_tinymce.Editor.html[Editor]
331+
| editor:xref:api/class_tinymce.Editor.adoc[Editor]
332332
| Editor instance.
333333
|===
334334

modules/ROOT/pages/api/class_tinymce.AddOnManager.html.adoc

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@
1515
This class handles the loading of themes/plugins or other add-ons and their language packs.
1616

1717
[[public-methods]]
18-
== Public Methods
18+
== Public Methods
1919
anchor:publicmethods[historical anchor]
2020

2121
|===
2222
| Method | Defined By
2323

24-
| <<add,add>>(id:String, o:https://www.tiny.cloud/docs-3x/api/class_tinymce.Theme.html[Theme]/https://www.tiny.cloud/docs-3x/api/plugins/class_tinymce.Plugin.html[Plugin]):https://www.tiny.cloud/docs-3x/api/class_tinymce.Theme.html[Theme]/https://www.tiny.cloud/docs-3x/api/plugins/class_tinymce.Plugin.html[Plugin] : Adds a instance of the add-on by it's short name.
24+
| <<add,add>>(id:String, o:xref:api/class_tinymce.Theme.adoc[Theme]/xref:api/plugins/class_tinymce.Plugin.adoc[Plugin]):xref:api/class_tinymce.Theme.adoc[Theme]/xref:api/plugins/class_tinymce.Plugin.adoc[Plugin] : Adds a instance of the add-on by it's short name.
2525
| AddOnManager
2626

27-
| <<get,get>>(n:String):https://www.tiny.cloud/docs-3x/api/class_tinymce.Theme.html[Theme]/https://www.tiny.cloud/docs-3x/api/plugins/class_tinymce.Plugin.html[Plugin] : Returns the specified add on by the short name.
27+
| <<get,get>>(n:String):xref:api/class_tinymce.Theme.adoc[Theme]/xref:api/plugins/class_tinymce.Plugin.adoc[Plugin] : Returns the specified add on by the short name.
2828
| AddOnManager
2929

3030
| <<load,load>>(n:String, u:String, cb:function, s:Object):void : Loads an add-on from a specific url.
@@ -35,7 +35,7 @@ anchor:publicmethods[historical anchor]
3535
|===
3636

3737
[[public-events]]
38-
== Public Events
38+
== Public Events
3939
anchor:publicevents[historical anchor]
4040

4141
|===
@@ -46,13 +46,13 @@ anchor:publicevents[historical anchor]
4646
|===
4747

4848
[[method-details]]
49-
== Method details
49+
== Method details
5050
anchor:methoddetails[historical anchor]
5151

5252
[[add]]
5353
=== add
5454

55-
*_public function add(id:String, o:https://www.tiny.cloud/docs-3x/api/class_tinymce.Theme.html[Theme]/https://www.tiny.cloud/docs-3x/api/plugins/class_tinymce.Plugin.html[Plugin]):https://www.tiny.cloud/docs-3x/api/class_tinymce.Theme.html[Theme]/https://www.tiny.cloud/docs-3x/api/plugins/class_tinymce.Plugin.html[Plugin]_* +
55+
*_public function add(id:String, o:xref:api/class_tinymce.Theme.adoc[Theme]/xref:api/plugins/class_tinymce.Plugin.adoc[Plugin]):xref:api/class_tinymce.Theme.adoc[Theme]/xref:api/plugins/class_tinymce.Plugin.adoc[Plugin]_* +
5656
Adds a instance of the add-on by it's short name.
5757

5858
*Parameters*
@@ -63,19 +63,19 @@ Adds a instance of the add-on by it's short name.
6363
| id:String
6464
| Short name/id for the add-on.
6565

66-
| o:https://www.tiny.cloud/docs-3x/api/class_tinymce.Theme.html[Theme]/https://www.tiny.cloud/docs-3x/api/plugins/class_tinymce.Plugin.html[Plugin]
66+
| o:xref:api/class_tinymce.Theme.adoc[Theme]/xref:api/plugins/class_tinymce.Plugin.adoc[Plugin]
6767
| Theme or plugin to add.
6868
|===
6969

7070
*Returns* +
71-
https://www.tiny.cloud/docs-3x/api/class_tinymce.Theme.html[Theme]/https://www.tiny.cloud/docs-3x/api/plugins/class_tinymce.Plugin.html[Plugin] - The same theme or plugin instance that got passed in.
71+
xref:api/class_tinymce.Theme.adoc[Theme]/xref:api/plugins/class_tinymce.Plugin.adoc[Plugin] - The same theme or plugin instance that got passed in.
7272

7373
*Example*
7474

7575
[[get]]
7676
=== get
7777

78-
*_public function get(n:String):https://www.tiny.cloud/docs-3x/api/class_tinymce.Theme.html[Theme]/https://www.tiny.cloud/docs-3x/api/plugins/class_tinymce.Plugin.html[Plugin]_* +
78+
*_public function get(n:String):xref:api/class_tinymce.Theme.adoc[Theme]/xref:api/plugins/class_tinymce.Plugin.adoc[Plugin]_* +
7979
Returns the specified add on by the short name.
8080

8181
*Parameters*
@@ -88,7 +88,7 @@ Returns the specified add on by the short name.
8888
|===
8989

9090
*Returns* +
91-
https://www.tiny.cloud/docs-3x/api/class_tinymce.Theme.html[Theme]/https://www.tiny.cloud/docs-3x/api/plugins/class_tinymce.Plugin.html[Plugin] - Theme or plugin add-on instance or undefined.
91+
xref:api/class_tinymce.Theme.adoc[Theme]/xref:api/plugins/class_tinymce.Plugin.adoc[Plugin] - Theme or plugin add-on instance or undefined.
9292

9393
[[load]]
9494
=== load
@@ -132,7 +132,7 @@ Loads a language pack for the specified add-on.
132132
|===
133133

134134
[[event-details]]
135-
== Event details
135+
== Event details
136136
anchor:eventdetails[historical anchor]
137137

138138
[[onadd]]

0 commit comments

Comments
 (0)