Skip to content

Commit 21b0a50

Browse files
authored
Merge pull request #4188 from syncfusion-content/951777-imgPathMvc
951777: Corrected the image path
2 parents 51dbc2e + c807b6d commit 21b0a50

File tree

21 files changed

+210
-210
lines changed

21 files changed

+210
-210
lines changed

ej2-asp-core-mvc/rich-text-editor/EJ2_ASP.MVC/basic-text-styling.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ The table below lists the available text styles in the Rich Text Editor's toolba
1818

1919
| Name | Icons | Summary | Initialization |
2020
|----------------|---------|---------|------------------------------------------|
21-
| Bold | ![Bold icon](.../images/bold.png) | Makes text thicker and darker | toolbarSettings: { items: ['Bold']} | `<b>bold</b>` |
22-
| Italic | ![Italic icon](../images/italic.png) | Slants text to the right | toolbarSettings: { items: ['Italic']} | `<em>italic</em>` |
23-
| Underline | ![Underline icon](../images/under-line.png) | Adds a line beneath the text | toolbarSettings: { items: ['Underline']} |
24-
| StrikeThrough | ![StrikeThrough icon](../images/strikethrough.png) | Applies a line through the text. |toolbarSettings: { items: ['StrikeThrough']}|
25-
| InlineCode |![InlineCode icon](../images/inlineCode.png) | Formats text as inline code | toolbarSettings: { items: ['InlineCode']} | `<code>inline code</code>`|
26-
| SubScript | ![SubScript icon](../images/sub-script.png) | Positions text slightly below the normal line |toolbarSettings: { items: ['SubScript']}|
27-
| SuperScript | ![SuperScript icon](../images/super-script.png) | Positions text slightly above the normal line |toolbarSettings: { items: ['SuperScript’']}|
28-
| LowerCase | ![LowerCase icon](../images/lower-case.png) | Converts text to lowercase |toolbarSettings: { items: ['LowerCase']}|
29-
| UpperCase | ![UpperCase icon](../images/upper-case.png) | Converts text to uppercase |toolbarSettings: { items: ['UpperCase’']}|
21+
| Bold | ![Bold icon](./images/bold.png) | Makes text thicker and darker | toolbarSettings: { items: ['Bold']} | `<b>bold</b>` |
22+
| Italic | ![Italic icon](./images/italic.png) | Slants text to the right | toolbarSettings: { items: ['Italic']} | `<em>italic</em>` |
23+
| Underline | ![Underline icon](./images/under-line.png) | Adds a line beneath the text | toolbarSettings: { items: ['Underline']} |
24+
| StrikeThrough | ![StrikeThrough icon](./images/strikethrough.png) | Applies a line through the text. |toolbarSettings: { items: ['StrikeThrough']}|
25+
| InlineCode |![InlineCode icon](./images/inlineCode.png) | Formats text as inline code | toolbarSettings: { items: ['InlineCode']} | `<code>inline code</code>`|
26+
| SubScript | ![SubScript icon](./images/sub-script.png) | Positions text slightly below the normal line |toolbarSettings: { items: ['SubScript']}|
27+
| SuperScript | ![SuperScript icon](./images/super-script.png) | Positions text slightly above the normal line |toolbarSettings: { items: ['SuperScript’']}|
28+
| LowerCase | ![LowerCase icon](./images/lower-case.png) | Converts text to lowercase |toolbarSettings: { items: ['LowerCase']}|
29+
| UpperCase | ![UpperCase icon](./images/upper-case.png) | Converts text to uppercase |toolbarSettings: { items: ['UpperCase’']}|
3030

3131
Please refer to the sample below to add these basic text styling options in the Rich Text Editor.
3232

ej2-asp-core-mvc/rich-text-editor/EJ2_ASP.MVC/editor-types/resizable-editor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The following sample demonstrates the resizable feature.
3737
{% endtabs %}
3838
{% endif %}
3939

40-
![Rich Text Editor Resizable support](../../images/Resizable-Editor.png)
40+
![Rich Text Editor Resizable support](../images/Resizable-Editor.png)
4141

4242
## Setting Editor Resize Limits
4343

ej2-asp-core-mvc/rich-text-editor/EJ2_ASP.MVC/insert-image-media/audio.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ You can insert audio from either the hosted link or the local machine, by clicki
6767

6868
By default, the audio tool opens the audio dialog, allowing you to insert audio from an online source. Inserting the URL will be added to the `src` attribute of the `<source>` tag.
6969

70-
![Rich Text Editor Audio insert](../../images/aspcore-richtexteditor-audio-web.png)
70+
![Rich Text Editor Audio insert](../images/aspcore-richtexteditor-audio-web.png)
7171

7272
## Uploading Audio from Local Machine
7373

@@ -206,15 +206,15 @@ N> By default, it doesn't support the `UseDefaultCredentials` property; we need
206206

207207
Once an audio file has been inserted, you can change it using the Rich Text Editor [QuickToolbarSettings](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.RichTextEditor.RichTextEditorQuickToolbarSettings.html#Syncfusion_EJ2_RichTextEditor_RichTextEditorQuickToolbarSettings_Audio) `AudioReplace` option. You can replace the audio file using the web URL or the browse option in the audio dialog.
208208

209-
![Rich Text Editor Audio replace](../../images/aspcore-richtexteditor-audio-replace.png)
209+
![Rich Text Editor Audio replace](../images/aspcore-richtexteditor-audio-replace.png)
210210

211211
## Deleting Audios
212212

213213
To remove audio from the Rich Text Editor content, select the audio and click the `audioRemove` button from the quick toolbar. It will delete the audio from the Rich Text Editor content as well as from the service location if the [InsertAudioSettings.RemoveUrl](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.RichTextEditor.RichTextEditorAudioSettings.html#Syncfusion_EJ2_RichTextEditor_RichTextEditorAudioSettings_RemoveUrl) is given.
214214

215215
Once you select the audio from the local machine, the URL for the audio will be generated. You can remove the audio from the service location by clicking the cross icon.
216216

217-
![Rich Text Editor Audio delete](../../images/aspcore-richtexteditor-audio-del.png)
217+
![Rich Text Editor Audio delete](../images/aspcore-richtexteditor-audio-del.png)
218218

219219
## Configuring Audio Display Position
220220

ej2-asp-core-mvc/rich-text-editor/EJ2_ASP.MVC/insert-image-media/insert-images.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ To remove an image from the Rich Text Editor content, select the image and click
156156

157157
Once you select the image from the local machine, the URL for the image will be generate. From there, you can remove the image from the service location by clicking the cross icon.
158158

159-
![Rich Text Editor Image delete](../../images/image-del.png)
159+
![Rich Text Editor Image delete](../images/image-del.png)
160160

161161
The following sample explains, how to configure `RemoveUrl` to remove a saved image from the remote service location, when the following image remove actions are performed:
162162

@@ -194,7 +194,7 @@ Sets the default width and height of the image when it is inserted in the Rich T
194194

195195
Through the quick toolbar, change the width and height using `Change Size` option. Once you click, the Image Size dialog box will open as follows. In that you can specify the width and height of the image in pixel.
196196

197-
![Rich Text Editor Image dimension](../../images/image-size.png)
197+
![Rich Text Editor Image dimension](../images/image-size.png)
198198

199199
## Adding Captions and Alt Text to Images
200200

@@ -238,13 +238,13 @@ Sets the default display for an image when it is inserted in the Rich Text Edito
238238

239239
The hyperlink itself can be an image in Rich Text Editor. If the image given as hyperlink, remove, edit and open link will be added to the quick toolbar of image. For further details about link, see the [`link documentation`](./link) documentation.
240240

241-
![Rich Text Editor image with link](../../images/image-link.png)
241+
![Rich Text Editor image with link](../images/image-link.png)
242242

243243
## Image Resizing Tools
244244

245245
Rich Text Editor has a built-in image inserting support. The resize points will be appearing on each corner of image when focus. So, users can resize the image using mouse points or thumb through the resize points easily. Also, the resize calculation will be done based on aspect ratio.
246246

247-
![Rich Text Editor image resize](../../images/image-resize.png)
247+
![Rich Text Editor image resize](../images/image-resize.png)
248248

249249
## Configuring Allowed Image Types
250250

ej2-asp-core-mvc/rich-text-editor/EJ2_ASP.MVC/insert-image-media/video.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ You can insert a video from either a hosted link or your local machine by clicki
6767

6868
The insert video dialog opens with the `Embedded code` option selected by default. This allows you to insert a video using embedded code.
6969

70-
![Rich Text Editor Embed URL Video insert](../../images/aspcore-richtexteditor-video-embed.png)
70+
![Rich Text Editor Embed URL Video insert](../images/aspcore-richtexteditor-video-embed.png)
7171

7272
### Inserting Video via Web URL
7373

7474
You can switch to the `Web URL` option by selecting the Web URL checkbox. Inserting a video using the Web URL option will add the video URL as the `src` attribute of the `<source>` tag.
7575

76-
![Rich Text Editor Video insert](../../images/aspcore-richtexteditor-video-web.png)
76+
![Rich Text Editor Video insert](../images/aspcore-richtexteditor-video-web.png)
7777

7878
## Uploading Video from Local Machine
7979

@@ -211,17 +211,17 @@ N> By default, it doesn't support the `UseDefaultCredentials` property, you can
211211

212212
Once a video file has been inserted, you can replace it using the Rich Text Editor [QuickToolbarSettings](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.RichTextEditor.RichTextEditorQuickToolbarSettings.html#Syncfusion_EJ2_RichTextEditor_RichTextEditorQuickToolbarSettings_Video) `VideoReplace` option. You can replace the video file either by using the embedded code or the web URL and the browse option in the video dialog.
213213

214-
![Rich Text Editor Embed Video replace](../../images/video-replace-embed.png)
214+
![Rich Text Editor Embed Video replace](../images/video-replace-embed.png)
215215

216-
![Rich Text Editor Web Video replace](../../images/video-replace-web.png)
216+
![Rich Text Editor Web Video replace](../images/video-replace-web.png)
217217

218218
## Deleting Video
219219

220220
To remove a video from the Rich Text Editor content, select the video and click the `VideoRemove` button from the quick toolbar. It will delete the video from the Rich Text Editor content as well as from the service location if the [InsertVideoSettings.RemoveUrl](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.RichTextEditor.RichTextEditorVideoSettings.html#Syncfusion_EJ2_RichTextEditor_RichTextEditorVideoSettings_RemoveUrl) is given.
221221

222222
Once you select the video from the local machine, the URL for the video will be generated. You can remove the video from the service location by clicking the cross icon.
223223

224-
![Rich Text Editor Video delete](../../images/video-del.png)
224+
![Rich Text Editor Video delete](../images/video-del.png)
225225

226226

227227
## Adjusting Video Dimensions
@@ -230,7 +230,7 @@ Set the default width, minWidth, height, and minHeight of the video element when
230230

231231
Through the [QuickToolbarSettings](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.RichTextEditor.RichTextEditorQuickToolbarSettings.html#Syncfusion_EJ2_RichTextEditor_RichTextEditorQuickToolbarSettings_Video), you can also change the width and height using the `Change Size` button. Once you click on the button, the video size dialog will open as below. In that, specify the width and height of the video in pixels.
232232

233-
![Rich Text Editor Video dimension](../../images/video-size.png)
233+
![Rich Text Editor Video dimension](../images/video-size.png)
234234

235235
## Configuring Video Display Position
236236

@@ -270,7 +270,7 @@ You can disable the resize action by configuring `false` for the [InsertVideoSet
270270

271271
> If the [MinWidth](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.RichTextEditor.RichTextEditorVideoSettings.html#Syncfusion_EJ2_RichTextEditor_RichTextEditorVideoSettings_MinWidth) and [MinHeight](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.RichTextEditor.RichTextEditorVideoSettings.html#Syncfusion_EJ2_RichTextEditor_RichTextEditorVideoSettings_MinHeight) properties are configured, the video resizing does not shrink below the specified values.
272272
273-
![Rich Text Editor video resize](../../images/aspcore-richtexteditor-video-resize.png)
273+
![Rich Text Editor video resize](../images/aspcore-richtexteditor-video-resize.png)
274274

275275
## Customizing the Video Quick Toolbar
276276

ej2-asp-core-mvc/rich-text-editor/EJ2_ASP.MVC/smart-editing/emoji-picker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The following code example shows how to add the emoji picker tool in the Rich Te
5050

5151
Quickly access the emoji picker by pressing the colon (:) key while typing a word prefix in an editor, allowing instant emoji selection and display. Moreover, continue typing in the editor after the colon (:) to filter and refine your search for the desired emojis.
5252

53-
![Rich Text Editor Emoji Picker](../../images/emoji-picker-shorcut.png)
53+
![Rich Text Editor Emoji Picker](../images/emoji-picker-shorcut.png)
5454

5555
## Navigating and Selecting Emojis Using the Keyboard
5656

ej2-asp-core-mvc/rich-text-editor/EJ2_ASP.MVC/smart-editing/mentions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ In the following sample, we configured the following properties with popup dimen
3434
{% endhighlight %}
3535
{% endtabs %}
3636

37-
![ASP.NET MVC mention integration ](../../images/mention-integration.png)
37+
![ASP.NET MVC mention integration ](../images/mention-integration.png)
3838

3939
> [View Sample](https://ej2.syncfusion.com/aspnetmvc/RichTextEditor/MentionIntegration#/bootstrap5)
4040

ej2-asp-core-mvc/rich-text-editor/EJ2_ASP.MVC/table.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -47,25 +47,25 @@ Tables can also be inserted through the `Insert Table` option in the pop-up wher
4747

4848
The `TableHeader` command is available in the quick toolbar, allowing you to add or remove the header row from the inserted table. The following image illustrates the table header.
4949

50-
![Rich Text Editor table header](../images/table_header.png)
50+
![Rich Text Editor table header](./images/table_header.png)
5151

5252
## Inserting Rows
5353

5454
You can insert `Rows` above or below the selected table cell using the quick toolbar. The focused row can also be deleted. The following screenshot shows the available options of the row item.
5555

56-
![Rich Text Editor table row](../images/table_rows.png)
56+
![Rich Text Editor table row](./images/table_rows.png)
5757

5858
## Inserting Columns
5959

6060
`Columns` can be inserted to the left or right of the selected table cell using the quick toolbar. The focused column can also be deleted. The following screenshot shows the available options in inserting column item.
6161

62-
![Rich Text Editor table column](../images/table_column.png)
62+
![Rich Text Editor table column](./images/table_column.png)
6363

6464
## Setting Cell Background Color
6565

6666
Set the background color for each table cell using the `BackgroundColor` command in the quick toolbar.
6767

68-
![Rich Text Editor table background color](../images/table_bg_color.png)
68+
![Rich Text Editor table background color](./images/table_bg_color.png)
6969

7070
## Deleting Tables
7171

@@ -77,13 +77,13 @@ Delete the entire table using the delete item in the quick toolbar.
7777

7878
Align text inside table cells to the top, middle, or bottom using the `TableCellVerticalAlign` tool in the quick toolbar.
7979

80-
![Rich Text Editor table vertical alignment](../images/table_vertical.png)
80+
![Rich Text Editor table vertical alignment](./images/table_vertical.png)
8181

8282
### Horizontal Alignment
8383

8484
Align text inside table cells to the left, right, or center using the `TableCellHorizontalAlign` tool in the quick toolbar.
8585

86-
![Rich Text Editor table horizontal alignment](../images/table_horizontal.png)
86+
![Rich Text Editor table horizontal alignment](./images/table_horizontal.png)
8787

8888
## Applying Table Styles
8989

@@ -95,15 +95,15 @@ By Default, provides Dashed border and Alternate rows.
9595

9696
**Alternate border**: Applies an alternating background to table rows.
9797

98-
![Rich Text Editor table styles](../images/table_style.png)
98+
![Rich Text Editor table styles](./images/table_style.png)
9999

100100
## Setting Table and Cell Dimensions
101101

102102
Sets the default width of the table when it is inserted in the Rich Text Editor using the width of [TableSettings](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.RichTextEditor.RichTextEditor.html#Syncfusion_EJ2_RichTextEditor_RichTextEditor_TableSettings).
103103

104104
Users can modify the width, cell padding, and cell spacing of selected tables using the properties option in the quick toolbar.
105105

106-
![Rich Text Editor table settings](../images/table_properties.png)
106+
![Rich Text Editor table settings](./images/table_properties.png)
107107

108108
## Table Cell Selection and Formatting
109109

@@ -163,15 +163,15 @@ The table cell merge feature allows you to merge two or more row and column cell
163163

164164
The following image explains the table merge action.
165165

166-
![Rich Text Editor table cell merge](../images/table_merge.png)
166+
![Rich Text Editor table cell merge](./images/table_merge.png)
167167

168168
### Splitting Table Cells
169169

170170
The table cell split feature allows you to a selected cell can be split both horizontally and vertically.
171171

172172
The following image explains the table split action.
173173

174-
![Rich Text Editor table cell split](../images/table_split.png)
174+
![Rich Text Editor table cell split](./images/table_split.png)
175175

176176
{% if page.publishingplatform == "aspnet-core" %}
177177

0 commit comments

Comments
 (0)