Skip to content

Commit b2d0265

Browse files
committed
Correct links and image refs
1 parent 1c8d0b4 commit b2d0265

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

15/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor-tinymce/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,25 +26,25 @@ If your site is upgraded from an older version, follow the migration guides belo
2626

2727
Customize everything from toolbar options to editor size to where pasted images are saved.
2828

29-
## [Styles](rte-styles.md)
29+
## [Styles](styles.md)
3030

3131
Use CSS to define specific editor styles and add them as formatting options of the Rich Text Editor.
3232

33-
## [Blocks](rte-blocks.md)
33+
## [Blocks](blocks.md)
3434

3535
Use Blocks to define specific parts that can be added as part of the markup of the Rich Text Editor.
3636

37-
## [Plugins](rte-plugins.md)
37+
## [Plugins](plugins.md)
3838

3939
Extend the functionality of the Rich Text Editor with plugins.
4040

4141
## Data Type Definition Example
4242

43-
![Rich Text Editor - Data Type](../../../../../../../10/umbraco-cms/fundamentals/backoffice/property-editors/built-in-property-editors/rich-text-editor/images/rte-datatype-v10.png)
43+
![Rich Text Editor - Data Type](images/rte-datatype-v10.png)
4444

4545
## Content Example
4646

47-
![Rich Text Editor - Content](../../built-in-property-editors/rich-text-editor/images/rte-content-11.png)
47+
![Rich Text Editor - Content](images/rte-content-11.png)
4848

4949
## MVC View Example
5050

@@ -71,7 +71,7 @@ Extend the functionality of the Rich Text Editor with plugins.
7171

7272
## Add values programmatically
7373

74-
See the example below to see how a value can be added or changed programmatically. To update a value of a property editor you need the [Content Service](https://apidocs.umbraco.com/v14/csharp/api/Umbraco.Cms.Core.Services.ContentService.html).
74+
See the example below to see how a value can be added or changed programmatically. To update a value of a property editor you need the [Content Service](https://apidocs.umbraco.com/v15/csharp/api/Umbraco.Cms.Core.Services.ContentService.html).
7575

7676
{% hint style="info" %}
7777
The example below demonstrates how to add values programmatically using a Razor view. However, this is used for illustrative purposes only and is not the recommended method for production environments.

15/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor-tinymce/blocks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,4 @@ The following example shows a Partial View of a Block with `MyBlockType` as Cont
9898

9999
## Build a Custom Backoffice View
100100

101-
Building Custom Views for Block representations in Backoffice is the same for all Block Editors. [Read about building a Custom View for Blocks here](../block-editor/build-custom-view-for-blocks.md)
101+
Building Custom Views for Block representations in Backoffice is the same for all Block Editors. [Read about building a Custom View for Blocks here](../../../../../tutorials/creating-custom-views-for-blocklist.md).

15/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor-tinymce/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ In this article, you will learn about different ways to configure the Rich Text
1010

1111
You have full control over which options should be available on the RTE.
1212

13-
![Toolbar: All options enabled](../../built-in-property-editors/rich-text-editor/images/toolbar-full-11.png)
13+
![Toolbar: All options enabled](images/toolbar-full-11.png)
1414

1515
In the example above, all 34 options have been enabled. These options include copy/paste buttons, font styles like bold and italics, bullet lists, and options to embed videos and insert images.
1616

1717
## Stylesheets
1818

1919
It is possible to define specific styles that can be used when editing content using the RTE. You can use as many of these styles with the RTE as you want.
2020

21-
The RTE styles are defined in CSS files which can be created in the **Settings** section. Read the [RTE Styles](rte-styles.md) article to learn more about this feature.
21+
The RTE styles are defined in CSS files which can be created in the **Settings** section. Read the [RTE Styles](styles.md) article to learn more about this feature.
2222

2323
## Dimensions
2424

15/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor-tinymce/plugins.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ The Rich Text Editor (RTE) in Umbraco is based on the open source editor [TinyMC
88

99
TinyMCE comes with a lot of plugins out of the box, but it is also possible to create your own plugins. This article will show you how to add a custom plugin to the rich text editor.
1010

11-
### Open-Source Plugins
11+
## Open-Source Plugins
1212

1313
TinyMCE has a lot of open-source plugins available. You can find a list of these plugins on the [TinyMCE website](https://www.tiny.cloud/docs/tinymce/6/plugins/#open-source-plugins).
1414

15-
### Premium Plugins
15+
## Premium Plugins
1616

1717
TinyMCE also has a number of [premium plugins](https://www.tiny.cloud/docs/tinymce/6/plugins/#premium-plugins) available. These plugins are only available for [paid TinyMCE subscriptions](https://www.tiny.cloud/pricing/). They can be added to the rich text editor by [adding a bit of configuration](#adding-a-premium-plugin).
1818

@@ -149,7 +149,7 @@ To add a premium plugin, you need to add the plugin name to the `plugins` array
149149
Premium plugins require a subscription at [TinyMCE Cloud](https://www.tiny.cloud/). You can go there and sign up for a free trial. You will get a Cloud API key that you can use to try out the premium plugins.
150150
{% endhint %}
151151

152-
1.**Declaring the plugin**
152+
1. **Declaring the plugin**
153153

154154
Let us first add the [powerpaste](https://www.tiny.cloud/docs/tinymce/6/introduction-to-powerpaste/) plugin to the rich text editor. This plugin is a premium plugin that helps you paste content from Word documents and other sources. We will configure the plugin to allow local images and clean the HTML when pasting Word documents.
155155

@@ -179,7 +179,7 @@ Let us first add the [powerpaste](https://www.tiny.cloud/docs/tinymce/6/introduc
179179

180180
{% endcode %}
181181

182-
2.**Creating the plugin.js file**
182+
2. **Creating the plugin.js file**
183183

184184
The `plugin.js` file should contain the JavaScript code to load the cloud-hosted TinyMCE premium plugins bundle. You must replace `{Cloud API Key}` with your own Cloud API key.
185185

15/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/change-rich-text-editor-ui.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ The following steps will guide you through changing the property editor used for
1010

1111
## Create a new Data Type
1212

13-
The first step in this guide is to create a new Rich Text Editor Data Type using the Tiptap UI.
13+
The first step in this guide is to create a new Rich Text Editor Data Type using the Tiptap property editor.
1414

15-
As an alternative, you can create a new Data Type with the Tiptap UI when updating the Document Type.
15+
As an alternative, you can create a new Data Type using the Tiptap property editor when updating the Document Type.
1616

1717
{% hint style="info" %}
1818
When swapping the UI used for the Rich Text Editor, you need to reconfigure the toolbar.

0 commit comments

Comments
 (0)