Skip to content

Commit 705ce8a

Browse files
committed
Fixing the links
1 parent 0424240 commit 705ce8a

File tree

105 files changed

+486
-486
lines changed

Some content is hidden

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

105 files changed

+486
-486
lines changed

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ anchor:contributingtothetinymcedocumentation[historical anchor]
1818

1919
If you would like to contribute to the TinyMCE project please read the TinyMCE Documentation Contributor's Guide at either:
2020

21-
* https://www.tiny.cloud/docs-4x/advanced/contributing-docs/[TinyMCE Documentation - Contributor's Guide].
21+
* https://www.tiny.cloud/docs-4x/advanced/contributing-docs.html[TinyMCE Documentation - Contributor's Guide].
2222
* https://github.com/tinymce/tinymce-docs-4x/blob/develop/CONTRIBUTING.md#contributing-to-the-tinymce-developer-documentation[GitHub - Contributing to the TinyMCE developer documentation].
2323

2424
[[working-on-tinymce-documentation]]

modules/ROOT/pages/advanced/annotations.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ setup: function(ed) {
4040
};
4141
----
4242

43-
See link:{baseurl}/configure/[Configure TinyMCE] for more information on how to configure TinyMCE core.
43+
See link:{baseurl}/configure/index.html[Configure TinyMCE] for more information on how to configure TinyMCE core.
4444

4545
[[2-registering-the-annotator-plugin]]
4646
=== 2. Registering the Annotator Plugin

modules/ROOT/pages/advanced/cdn-details.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99

1010
The CDN has been superseded by the enhanced functionality of TinyMCE Cloud.
1111

12-
You can find out more about TinyMCE Cloud in the link:{baseurl}/cloud-deployment-guide/[Cloud Deployment Guide] guide..
12+
You can find out more about TinyMCE Cloud in the link:{baseurl}/cloud-deployment-guide/index.html[Cloud Deployment Guide] guide..

modules/ROOT/pages/advanced/configuring-comments-callbacks.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[[introduction]]
1010
== Introduction
1111

12-
*Callback mode* is the default mode for link:{baseurl}/plugins/comments/comments_2.0/[Comments 2.0]. In the callback mode, the user needs to configure storage to be able to save comments on the server. The Comments functions (create, reply, edit, delete comment, delete all conversations, and lookup) are configured differently depending upon the server-side storage configuration.
12+
*Callback mode* is the default mode for link:{baseurl}/plugins/comments/comments_2.0.html[Comments 2.0]. In the callback mode, the user needs to configure storage to be able to save comments on the server. The Comments functions (create, reply, edit, delete comment, delete all conversations, and lookup) are configured differently depending upon the server-side storage configuration.
1313

1414
[[required-settings]]
1515
=== Required settings
@@ -211,4 +211,4 @@ The done callback needs to take an object of the form:
211211
}
212212
----
213213

214-
For more information on Comments commercial feature, visit our link:{baseurl}/enterprise/tiny-comments/[Premium Features] page.
214+
For more information on Comments commercial feature, visit our link:{baseurl}/enterprise/tiny-comments.html[Premium Features] page.

modules/ROOT/pages/advanced/contributing-to-open-source.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ The TinyMCE source code is https://github.com/tinymce/tinymce[hosted on Github].
3030
== Contributing to the documentation
3131
anchor:contributingtothedocumentation[historical anchor]
3232

33-
If you would like to contribute to TinyMCE's documentation, please see our link:../contributing-docs/[contrib page and style guide].
33+
If you would like to contribute to TinyMCE's documentation, please see our link:{baseurl}/advanced/contributing-docs.html[contrib page and style guide].

modules/ROOT/pages/advanced/creating-a-custom-button.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ In fact, the `identifier` is the only required argument, but if you want to be
3232

3333
But let's do something more useful than merely alerting a message. Let's insert something into the editor - a current date, for example.
3434

35-
NOTE: TinyMCE already ships with *nice* link:{baseurl}/plugins/insertdatetime/[Insert date/time plugin] (it is hard to find a text editing feature that is not implemented in TinyMCE), but it does a whole lot of complimentary things - adds some commands and shortcuts, inserts *"Insert date/time"* menu, adds support for fancy date formats, i18n, and some more. We won't go into all of that in this tutorial and make our button much simpler. However, `insertdatetime` plugin is a good read if mentioned stuff is something that you would like to familiarise yourself with. Its source code can be found on https://github.com/tinymce/tinymce/blob/master/js/tinymce/plugins/insertdatetime/plugin.js[github].
35+
NOTE: TinyMCE already ships with *nice* link:{baseurl}/plugins/insertdatetime.html[Insert date/time plugin] (it is hard to find a text editing feature that is not implemented in TinyMCE), but it does a whole lot of complimentary things - adds some commands and shortcuts, inserts *"Insert date/time"* menu, adds support for fancy date formats, i18n, and some more. We won't go into all of that in this tutorial and make our button much simpler. However, `insertdatetime` plugin is a good read if mentioned stuff is something that you would like to familiarise yourself with. Its source code can be found on https://github.com/tinymce/tinymce/blob/master/js/tinymce/plugins/insertdatetime/plugin.js[github].
3636

3737
For our purpose, we will use https://developer.mozilla.org/en-US/docs/Web/HTML/Element/time[`<time>`] tag. `<time>` tag should have an attribute `datetime` - valid date with an optional time string. And as https://developer.mozilla.org/en-US/docs/Web/HTML/Element/time[MDN] states:
3838

@@ -156,7 +156,7 @@ Here's updated demo. Try to click inside and outside the date string:
156156

157157
NOTE: In reality, it would have been more practical to simply set `contenteditable` attribute to *false* on the `time` tag. But I wanted to demonstrate how you can toggle the button state, depending on various logical conditions.
158158

159-
By the way, notice how the code for our example gets bigger and bigger. It has almost reached the boundaries of simplicity already. This is the moment when you should ask yourself whether it's better to link:{baseurl}/advanced/creating-a-plugin/[bundle this feature as a plugin] instead.
159+
By the way, notice how the code for our example gets bigger and bigger. It has almost reached the boundaries of simplicity already. This is the moment when you should ask yourself whether it's better to link:{baseurl}/advanced/creating-a-plugin.html[bundle this feature as a plugin] instead.
160160

161161
[[toggle-button]]
162162
== Toggle button

modules/ROOT/pages/advanced/creating-a-plugin.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
:keywords: plugin plugin.js plugin.min.js tinymce.js
88
:title_nav: Create a Plugin
99

10-
Creating plugins in TinyMCE is pretty simple - especially if you use the link:{baseurl}/advanced/yeoman-generator/[Yeoman generator]! - but if you would rather do it all by yourself, keep reading.
10+
Creating plugins in TinyMCE is pretty simple - especially if you use the link:{baseurl}/advanced/yeoman-generator.html[Yeoman generator]! - but if you would rather do it all by yourself, keep reading.
1111

1212
This tutorial tries to outline some of the basic concepts of creating a plugin. For more details consult the API documentation and check the existing plugins we ship with the core.
1313

@@ -127,7 +127,7 @@ tinymce.init({
127127
== Exposing metadata
128128
anchor:exposingmetadata[historical anchor]
129129

130-
You can expose metadata from your plugin by returning an object with the property `getMetadata` with a function that returns an object with a `name` and `url` property. This metadata will then be used by the link:{baseurl}/plugins/help/[Help Plugin] to show the correct name and link for your plugin in the Plugins installed tab. See the `test` plugin above for example.
130+
You can expose metadata from your plugin by returning an object with the property `getMetadata` with a function that returns an object with a `name` and `url` property. This metadata will then be used by the link:{baseurl}/plugins/help.html[Help Plugin] to show the correct name and link for your plugin in the Plugins installed tab. See the `test` plugin above for example.
131131

132132
[[language-localization]]
133133
== Language localization

modules/ROOT/pages/advanced/editor-command-identifiers.adoc

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -161,186 +161,186 @@ Here is a list of the currently exposed editor commands. All these commands are
161161
| To redo the last change to the editor.
162162

163163
| mceAutoResize
164-
| link:{baseurl}/plugins/autoresize/[autoresize]
164+
| link:{baseurl}/plugins/autoresize.html[autoresize]
165165
| Auto resizes the editor to the contents.
166166

167167
| mceShowCharmap
168-
| link:{baseurl}/plugins/charmap/[charmap]
168+
| link:{baseurl}/plugins/charmap.html[charmap]
169169
| Opens the character map dialog.
170170

171171
| mceCodeEditor
172-
| link:{baseurl}/plugins/code/[code]
172+
| link:{baseurl}/plugins/code.html[code]
173173
| Opens the code editor dialog.
174174

175175
| mceDirectionLTR
176-
| link:{baseurl}/plugins/directionality/[directionality]
176+
| link:{baseurl}/plugins/directionality.html[directionality]
177177
| Changes the directionality to LTR.
178178

179179
| mceDirectionRTL
180-
| link:{baseurl}/plugins/directionality/[directionality]
180+
| link:{baseurl}/plugins/directionality.html[directionality]
181181
| Changes the directionality to RTL.
182182

183183
| mceFullPageProperties
184-
| link:{baseurl}/plugins/fullpage/[fullpage]
184+
| link:{baseurl}/plugins/fullpage.html[fullpage]
185185
| Opens the fullpage dialog.
186186

187187
| mceFullscreen
188-
| link:{baseurl}/plugins/fullscreen/[fullscreen]
188+
| link:{baseurl}/plugins/fullscreen.html[fullscreen]
189189
| Toggles fullscreen mode.
190190

191191
| mceImage
192-
| link:{baseurl}/plugins/image/[image]
192+
| link:{baseurl}/plugins/image.html[image]
193193
| Opens the insert image dialog.
194194

195195
| mceEditImage
196-
| link:{baseurl}/plugins/imagetools/[imagetools]
196+
| link:{baseurl}/plugins/imagetools.html[imagetools]
197197
| Opens the edit image dialog.
198198

199199
| mceImageRotateRight
200-
| link:{baseurl}/plugins/imagetools/[imagetools]
200+
| link:{baseurl}/plugins/imagetools.html[imagetools]
201201
| Rotates selected image 90 degrees clockwise.
202202

203203
| mceImageRotateLeft
204-
| link:{baseurl}/plugins/imagetools/[imagetools]
204+
| link:{baseurl}/plugins/imagetools.html[imagetools]
205205
| Rotates selected image 90 degrees counter clockwise.
206206

207207
| mceImageFlipVertical
208-
| link:{baseurl}/plugins/imagetools/[imagetools]
208+
| link:{baseurl}/plugins/imagetools.html[imagetools]
209209
| Flips selected image vertically.
210210

211211
| mceImageFlipHorizontal
212-
| link:{baseurl}/plugins/imagetools/[imagetools]
212+
| link:{baseurl}/plugins/imagetools.html[imagetools]
213213
| Flips selected image horizontally.
214214

215215
| mceInsertDate
216-
| link:{baseurl}/plugins/insertdatetime/[insertdatetime]
216+
| link:{baseurl}/plugins/insertdatetime.html[insertdatetime]
217217
| Inserts the current date as a human readable string.
218218

219219
| mceInsertTime
220-
| link:{baseurl}/plugins/insertdatetime/[insertdatetime]
220+
| link:{baseurl}/plugins/insertdatetime.html[insertdatetime]
221221
| Insert the current time as a human readable string.
222222

223223
| mceInsertDefinitionList
224-
| link:{baseurl}/plugins/lists/[lists]
224+
| link:{baseurl}/plugins/lists.html[lists]
225225
| Creates a definition list.
226226

227227
| mceNonBreaking
228-
| link:{baseurl}/plugins/nonbreaking/[nonbreaking]
228+
| link:{baseurl}/plugins/nonbreaking.html[nonbreaking]
229229
| Inserts a non breaking space.
230230

231231
| mcePageBreak
232-
| link:{baseurl}/plugins/pagebreak/[pagebreak]
232+
| link:{baseurl}/plugins/pagebreak.html[pagebreak]
233233
| Inserts a page break.
234234

235235
| mcePreview
236-
| link:{baseurl}/plugins/preview/[preview]
236+
| link:{baseurl}/plugins/preview.html[preview]
237237
| Displays a preview of the editor contents.
238238

239239
| mcePrint
240-
| link:{baseurl}/plugins/print/[print]
240+
| link:{baseurl}/plugins/print.html[print]
241241
| Prints the current page.
242242

243243
| mceSave
244-
| link:{baseurl}/plugins/save/[save]
244+
| link:{baseurl}/plugins/save.html[save]
245245
| Saves the current editor contents.
246246

247247
| SearchReplace
248-
| link:{baseurl}/plugins/searchreplace/[searchreplace]
248+
| link:{baseurl}/plugins/searchreplace.html[searchreplace]
249249
| Opens the search/replace dialog.
250250

251251
| mceSpellcheck
252-
| link:{baseurl}/plugins/spellchecker/[spellchecker]
252+
| link:{baseurl}/plugins/spellchecker.html[spellchecker]
253253
| Toggles spellchecking on/off.
254254

255255
| mceInsertTemplate
256-
| link:{baseurl}/plugins/template/[template]
256+
| link:{baseurl}/plugins/template.html[template]
257257
| Inserts a template the value should be the template HTML to process and insert.
258258

259259
| mceVisualBlocks
260-
| link:{baseurl}/plugins/visualblocks/[visualblocks]
260+
| link:{baseurl}/plugins/visualblocks.html[visualblocks]
261261
| Toggles visual blocks on/off.
262262

263263
| mceVisualChars
264-
| link:{baseurl}/plugins/visualchars/[visualchars]
264+
| link:{baseurl}/plugins/visualchars.html[visualchars]
265265
| Toggles visual characters on/off.
266266

267267
| mceMedia
268-
| link:{baseurl}/plugins/media/[media]
268+
| link:{baseurl}/plugins/media.html[media]
269269
| Opens the insert/edit media dialog.
270270

271271
| mceAnchor
272-
| link:{baseurl}/plugins/anchor/[anchor]
272+
| link:{baseurl}/plugins/anchor.html[anchor]
273273
| Opens the insert/edit anchor dialog.
274274

275275
| mceTableSplitCells
276-
| link:{baseurl}/plugins/table/[table]
276+
| link:{baseurl}/plugins/table.html[table]
277277
| Splits the current merge table cell.
278278

279279
| mceTableMergeCells
280-
| link:{baseurl}/plugins/table/[table]
280+
| link:{baseurl}/plugins/table.html[table]
281281
| Merges the selected cells or opens a dialog if there is no cell selection.
282282

283283
| mceTableInsertRowBefore
284-
| link:{baseurl}/plugins/table/[table]
284+
| link:{baseurl}/plugins/table.html[table]
285285
| Inserts a row before the current row.
286286

287287
| mceTableInsertRowAfter
288-
| link:{baseurl}/plugins/table/[table]
288+
| link:{baseurl}/plugins/table.html[table]
289289
| Inserts a row after the current row.
290290

291291
| mceTableInsertColBefore
292-
| link:{baseurl}/plugins/table/[table]
292+
| link:{baseurl}/plugins/table.html[table]
293293
| Inserts a column before the current column.
294294

295295
| mceTableInsertColAfter
296-
| link:{baseurl}/plugins/table/[table]
296+
| link:{baseurl}/plugins/table.html[table]
297297
| Inserts a column after the current column.
298298

299299
| mceTableDeleteCol
300-
| link:{baseurl}/plugins/table/[table]
300+
| link:{baseurl}/plugins/table.html[table]
301301
| Deletes the current column.
302302

303303
| mceTableDeleteRow
304-
| link:{baseurl}/plugins/table/[table]
304+
| link:{baseurl}/plugins/table.html[table]
305305
| Deletes the current row.
306306

307307
| mceTableCutRow
308-
| link:{baseurl}/plugins/table/[table]
308+
| link:{baseurl}/plugins/table.html[table]
309309
| Cuts the current row into table clipboard.
310310

311311
| mceTableCopyRow
312-
| link:{baseurl}/plugins/table/[table]
312+
| link:{baseurl}/plugins/table.html[table]
313313
| Copies the current row into table clipboard.
314314

315315
| mceTablePasteRowBefore
316-
| link:{baseurl}/plugins/table/[table]
316+
| link:{baseurl}/plugins/table.html[table]
317317
| Pastes the clipboard row before the current row.
318318

319319
| mceTablePasteRowAfter
320-
| link:{baseurl}/plugins/table/[table]
320+
| link:{baseurl}/plugins/table.html[table]
321321
| Pastes the clipboard row after the current row.
322322

323323
| mceTableDelete
324-
| link:{baseurl}/plugins/table/[table]
324+
| link:{baseurl}/plugins/table.html[table]
325325
| Deletes the current table.
326326

327327
| mceInsertTable
328-
| link:{baseurl}/plugins/table/[table]
328+
| link:{baseurl}/plugins/table.html[table]
329329
| Opens the insert table dialog.
330330

331331
| mceTableRowProps
332-
| link:{baseurl}/plugins/table/[table]
332+
| link:{baseurl}/plugins/table.html[table]
333333
| Opens the table row properties dialog.
334334

335335
| mceTableCellProps
336-
| link:{baseurl}/plugins/table/[table]
336+
| link:{baseurl}/plugins/table.html[table]
337337
| Opens the table cell properties dialog.
338338

339339
| mceInsertToc
340-
| link:{baseurl}/plugins/toc/[toc]
340+
| link:{baseurl}/plugins/toc.html[toc]
341341
| Inserts a Table of Contents into the editor.
342342

343343
| mceUpdateToc
344-
| link:{baseurl}/plugins/toc/[toc]
344+
| link:{baseurl}/plugins/toc.html[toc]
345345
| Updates the Table of Contents, if found in the editor.
346346
|===

0 commit comments

Comments
 (0)